Answers for "ubuntu command to list largest files"

1

ubuntu command to list largest files

du -a /dir/ | sort -n -r | head -n 20 # where /dir/ is the directory name
Posted by: Guest on April-08-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language