? Earlier 1 items total Later ?

On this page:?

List 10 largest files/directories within the current directory

From the textdrive fora

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.

? Earlier 1 items total Later ?