Skip to: site menu |main content

Welcome to my personal site. If You have any question or suggestion please feel free to contact me from contact page.

Advertisements

Contact me to place your Ads Here..

Powered by Drupal, an open source content management system

Syndicate

Syndicate content

Remove Delete All .svn files and directories from Drupal INstallation

Want to bulk delete .svn folders recursively?

Warning: Before you use this command make sure you have changed to the correct directory where you want to apply this. example:
Lets say you want to delete all .svn files from drupal folder "inderweb"

cd htdocs/inderweb

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


rm -rf `find . -type d -name .svn`

Bash Script for Removing All .zvn folder/directories:-

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

Back to top

Related Pictures

Tags for Remove Delete All .svn files and directories from Drupal INstallation

Recent comments

InderSingh.com v1.2
(May 18, 2012)