11 lines
		
	
	
		
			147 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			147 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
echo "Purging old rent files, please wait..."
 | 
						|
purgedir A-E
 | 
						|
purgedir F-J
 | 
						|
purgedir K-O
 | 
						|
purgedir P-T
 | 
						|
purgedir U-Z
 | 
						|
rm -f ZZZ/*
 | 
						|
echo "Done."
 |