mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			247 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			247 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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
 |