Skip navigation.
Home
That which cannot be rendered in binary is by definition a delusion
 

Reply to comment

Killing off SVN entries

I don't have console access to WLL so I have to do everything with old school FTP. This means packing up projects like Zupal which have a signifacnt overhead of SVN files. So how do I delete the svn repository? with a handy little snippet I found on the net:

#!/bin/sh
echo "recursively removing .svn folders from"
pwd
rm -rf `find . -type d -name .svn`

 

You can save this as an executable script or run it from the command line after changing your directory to the root dir you are trying to scrub. Enjoy!

Reply

The content of this field is kept private and will not be shown publicly.
  • Lines and paragraphs break automatically.
  • Allowed HTML tags: <a> <p> <span><small> <div> <h1> <h2> <h3> <h4> <h5> <h6> <img> <map> <area> <hr> <br> <br /> <ul> <ol> <li> <dl> <dt> <dd> <table> <tr> <td> <em> <b> <u> <i> <strong> <font> <del> <ins> <sub> <sup> <quote> <blockquote> <pre> <address> <code> <cite> <embed> <object> <param> <strike> <caption>
  • Web page addresses and e-mail addresses turn into links automatically.

More information about formatting options