Skip to content

Commit d29a50a

Browse files
author
timlinux
committedAug 1, 2008
Small helper script to remove junk from svn checkout tree
git-svn-id: http://svn.osgeo.org/qgis/trunk@8955 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e1368a7 commit d29a50a

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.