Jopa Posted March 2, 2013 Posted March 2, 2013 (edited) RPM Based distributions: Red Hat, Centos, FedoraSpecify path: find {/path/to/location/} -type f -size +{size-in-kb}k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' Example for specific path: find /home/http/logs -type f -size +100000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' Current Dir: find . -type f -size +100000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' Debian or Debian based ( Ubuntu and various other deb based distros )Specify path: find {/path/to/location} -type f -size +{file-size-in-kb}k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }' Current Dir: find . -type f -size +10000k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }' Largest files in directory: ls -lSh | less du -xakh .|sort -n|tail -10 du -k | sort -n | perl -ne 'if ( /^(\d+)\s+(.*$)/){$l=log($1+.1);$m=int($l/log(1024)); printf ("%6.1f\t%s\t%25s %s\n",($1/(2**(10*$m))),(("K","M","G","T","P")[$m]),"*"x (1.5*$l),$2);}' find . -type f -print0 | xargs -0 ls -lSh | head -10 Edited March 30, 2018 by Fearless News Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.