I like lemonade.

How to remove .svn folders and files in linux

This is a very short post about removing the SVN files and folders from your directories.

find ./ -name ".svn" | xargs rm -Rf

Comments

Hi,you can also use the -exec

Hi,you can also use the -exec flag

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

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <pre> <code>
  • Lines and paragraphs break automatically.
  • Web page addresses and e-mail addresses turn into links automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.