Skip to content

Instantly share code, notes, and snippets.

@nojimage
Created December 3, 2009 08:43
Show Gist options
  • Save nojimage/247996 to your computer and use it in GitHub Desktop.
Save nojimage/247996 to your computer and use it in GitHub Desktop.
.svnと.DS_Storeをまとめて削除するコマンドのエイリアス
alias clean-svn='rm -rf `find . -type d -name .svn`'
alias clean-dsstore='rm -rf `find . -type f -name .DS_Store`'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment