List 10 largest files/directories within the current directory
From the textdrive fora
This will list the top 10 largest files and/or directories below the directory where you run this command.
du -sk * | sort -n | tail -10
This will list the top 10 largest files and/or directories below the directory where you run this command.