Skip to content

Instantly share code, notes, and snippets.

@mathiasrw
Created March 15, 2017 03:33
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 mathiasrw/4dd01a81c4f188b881a3ba41a146806b to your computer and use it in GitHub Desktop.
Save mathiasrw/4dd01a81c4f188b881a3ba41a146806b to your computer and use it in GitHub Desktop.
#Biggest files
du -hx * | sort -rh | head -20
#files over 50Mb
$ find . -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
#https://www.cyberciti.biz/faq/find-large-files-linux/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment