Skip to content

Commit

Permalink
Small helper script to remove junk from svn checkout tree
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@8955 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Aug 1, 2008
1 parent e1368a7 commit d29a50a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/remove_non_svn_files.sh
@@ -0,0 +1,10 @@
#!/bin/bash

#
# A simple script to get rid of files that are not
# managed by svn. It will request confirmation before
# deleting each file.
#
# Tim Sutton, May 2008

for FILE in `svn status |grep ^? | awk '{print $2}'`;do rm -i -r $FILE; done

0 comments on commit d29a50a

Please sign in to comment.