Skip to content

Instantly share code, notes, and snippets.

@jpetitcolas
Created May 27, 2013 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpetitcolas/5657280 to your computer and use it in GitHub Desktop.
Save jpetitcolas/5657280 to your computer and use it in GitHub Desktop.
Find biggest files on your Linux filesystem
find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment