Answers for "how to get the largest files and folders in linux"

1

linux find largest files only

sudo find / -xdev -type f -size +100M
Posted by: Guest on May-15-2021
2

find largest files in a directory unix

du -a /dir/ | sort -n -r | head -n 20.
Posted by: Guest on July-19-2021

Code answers related to "how to get the largest files and folders in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language