Answers for "ubuntu 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
0

find large files in ubuntu

sudo du -a /your_dir/ | sort -n -r | head -n 20
Posted by: Guest on August-18-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language