Answers for "get biggest files 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
3

check th binggest file in linux

Just Enter this cmd on cli :::Note here /var is directory path ,you can change as per your requirnment 
sudo du -a /var | sort -n -r | head -n 10

1008372 /var
313236  /var/www
253964  /var/log
192544  /var/lib
152628  /var/spool
152508  /var/spool/squid
136524  /var/spool/squid/00
95736   /var/log/mrtg.log
74688   /var/log/squid
62544   /var/cache
Posted by: Guest on July-29-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language