sort allows you to organize data
ls -al | sort
set field to sort on: -k
ls -al | sort -k9
sorting listing by size
ls -al | sort -k5n
: why the
n
?
wc
command counts lines, words, and letters
ls -al | wc
NEXT
PREVIOUS
Master Index