Month: February 2008

Reverse a File

This commands reverses a file in linux – the last line will be the first… tac file.txt tac = reverse…

Command to View just the Files

View just the files of directory ls -F

Command to Sort Files by Size

Show size of the files and directories sorted by size du -sk * | sort -rn