Skip to content

Instantly share code, notes, and snippets.

Created September 7, 2015 07:40
Show Gist options
  • Save anonymous/991ab0b32306a0677dca to your computer and use it in GitHub Desktop.
Save anonymous/991ab0b32306a0677dca to your computer and use it in GitHub Desktop.
Ubuntu / *nix cheat sheet
display the biggest top-20 directories
````du -ah . | sort -rh | head -20
Display largest files
find "$directory" -type f -printf "%s - %p\n" | sort -n | tail -n $num_entries
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment