Skip to content

Commit 57cb59a

Browse files
author
timlinux
committedAug 1, 2008

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

‎scripts/remove_non_svn_files.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
#
4+
# A simple script to get rid of files that are not
5+
# managed by svn. It will request confirmation before
6+
# deleting each file.
7+
#
8+
# Tim Sutton, May 2008
9+
10+
for FILE in `svn status |grep ^? | awk '{print $2}'`;do rm -i -r $FILE; done

0 commit comments

Comments
 (0)
Please sign in to comment.