Skip to content

Instantly share code, notes, and snippets.

@victorjonsson
Last active October 8, 2015 00:09
Show Gist options
  • Save victorjonsson/3246306 to your computer and use it in GitHub Desktop.
Save victorjonsson/3246306 to your computer and use it in GitHub Desktop.
nice to have bash commands (svn...)
# 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