Site icon Learning & Doing

Mencari file yang besar di linux

command :

 

find / -xdev -type f -size +100M

ket : mencari file yg lebih besar dari 100 MB di root /

atau 

find / -type f -size +20M -exec ls -lh {} \; | awk '{ print $NF ": " $5 }' 
Exit mobile version