Created
September 7, 2015 07:40
-
-
Save anonymous/991ab0b32306a0677dca to your computer and use it in GitHub Desktop.
Ubuntu / *nix cheat sheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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