Remove all .svn sub-directories

handy command to remove all sub-directories of a given name below the current working directory

  $  find . -name ".svn" -exec rm -rf {} \;

No comments:

Post a Comment