mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
13 lines
122 B
Bash
13 lines
122 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
|
||
|
if [ $# -le 0 ]
|
||
|
then
|
||
|
echo usage $0 directory
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
echo find $1 -name .svn
|
||
|
rm -vrf `find $1 -name .svn`
|
||
|
|