Last active
October 8, 2015 00:09
-
-
Save victorjonsson/3246306 to your computer and use it in GitHub Desktop.
nice to have bash commands (svn...)
This file contains hidden or 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
# Delete all missing files (!) | |
$ svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' ) | |
# grep all lines not starting with ? | |
$ ... | grep -v '^?' | |
# List large directories | |
$ sudo du -h / | grep ^[0-9.]*G |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment