Answers for "find bigger file on linux centos"

0

find bigger file on linux centos

du -a -h /path | sort -h -r | head -n 10

OR

du -hs * | sort -rh | head -5
Posted by: Guest on August-12-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language