Skip to content

Instantly share code, notes, and snippets.

@eabait
Created September 4, 2012 19:02
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 eabait/3625088 to your computer and use it in GitHub Desktop.
Save eabait/3625088 to your computer and use it in GitHub Desktop.
Bash aliases
alias svn.removeAll="find . -name .svn -type d -exec rm -Rf {} \;" #recursively removes all .svn folders in current dir and subfolders
alias rmdsstores="find . -name *.DS_Store -type f -exec rm {} \;" #remove all .DS_Store files from the current directory up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment