More Sorting: Finding the Largest File and the Process using the Most Memory
To find the largest file in your harddrive use this command: ls -l | sort +4n
To find process using the most memory use this command: ps -aux | sort +4n
They both works like a charm.
