Blog
Trazzle
Contact
Remove .svn files with bash
Posted on 27/05/07 in
One-Liner
,
Real World Problems
|
2 Comments
Just a quick reminder, since I always forget this one ...
find
.
-name
.svn
-exec
rm
-rf
{
}
\;
Download this script