Remove .SVN files from a directory structure


/ Published in: Bash
Save to your folder(s)

Quick command I use to remove .SVN folders from a tree structure copied from SVN working copy. Sometimes a bit easier than running an export.


Copy this code and paste it in your HTML
  1. find . -name ".svn" -exec rm -rf {} \;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.