#!/bin/bashD=$(pwd)echo"Current directory is $D"read-p"Are you sure to remove all .svn directory in all subdirectory here? [yes/NO] " ANS
if["$ANS" = "yes"]; thenfind-type d -name .svn | xargsrm-rfelseecho skipped
fi
public snippets
This is a community-maintained collection of reusable code snippets. Contribute something without logging in, or improve existing contributions. All code is dedicated to the public domain unless otherwise specified.