Saturday, July 31st, 2010
Random:
- Eclipse 3.5 Galileo on Ubuntu Jaunty 9.04
- Lightbox clone
- Install packages for PEAR in XAMPP (Ubuntu Linux)
- How to clear DNS cache in Mac (Tiger, Leopard, Snow Leopard)
- Convert PDF to images (jpeg, png etc…)
- Skype on Ubuntu Lucid Lynx 10.04
- Django, Mod-Python & CouchDB
- Error with lxml on Debian Lenny
How to delete all .svn folders recursively
29/11/2008 // 1 comment // Category: My Everything // Thẻ: delete, linux, recursive, svn.You might need to do this sometimes, tt’s as simple as this:
On Linux:
rm -rf `find . -name .svn`
On Windows
Create a .bat file (some name like: delete_svn.bat) at the root of the directory from where u want to delete all .svn subfolders
for /f “tokens=* delims=” %%i in (’dir /s /b /a:d *svn’) do (
rd /s /q “%%i”
)
One Response to “How to delete all .svn folders recursively”
Leave a Reply
Recent Posts
Recent Comments
- car on Google App Engine & cron jobs
- Rodrigo Marangon on Mod_python + Apache 2 + Slackware Error
- gabriel on Install packages for PEAR in XAMPP (Ubuntu Linux)
- mod_python on Apache 2 | Miscellaneous musings in beta on Mod_python + Apache 2 + Slackware Error
- Gilberto Ramos on Get back your Alt+Ctrl+Backspace in Karmic
Blogroll
car: nice engine, i'll try to pimp my ride
Rodrigo Marangon: Thanks for sharing! It was very helpful. Another way to make mod_python work is replacing the ...
gabriel: just the info that I was looking for... tnx ...
Gilberto Ramos: very useful! i was looking for this..!
Venkat Mantirraju: This is an excellent guide. Thanks a lot for your effort and time in making ...
How to clear DNS cache in Mac (Tiger, Leopard, Snow Leopard)
31/07/2010
Validation with Jquery
26/07/2010
Add your Google Apps email to Palm Pre
19/07/2010
Install packages for PEAR in XAMPP (Ubuntu Linux)
17/03/2010
Skype on Ubuntu Lucid Lynx 10.04
17/03/2010
Eclipse 3.5 Galileo on Ubuntu Jaunty 9.04
| 12 comments
Google App Engine & cron jobs
| 4 comments
vmware-tools on Slackware 12.1
| 3 comments
Django, Mod-Python & CouchDB
| 2 comments
Mapnik installation on Slackware 12.1
| 2 comments
9.04
application
code
couchdb
curl
debian
delete
design
download
editor
error
gae
gis
godaddy
google
google app engine
jaunty
javascript
javascripts
jquery
karmic
lightbox
linux
mapnik
mod_python
multiple requests
My Everything
php
programming
promotion
python
recursive
skype
slackware
speedup
svn
tips
tools
ubuntu
wget
windows
YUI
- © 2009 Tech Mix. All rights reserved.
- WPLine 1.0 designed by Hutek - A member of Vietnam Wordpress Commnunity.
- Powered by Wordpress. Work fine on almost popular browsers.


January 21st, 2009 at 8:17 am
Try ’svn export repository-address’.