6 lines
		
	
	
		
			159 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			159 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| echo "Resetting directory permissions..."
 | |
| find -type d -exec chmod 755 {} \;
 | |
| echo "Resetting file permissions..."
 | |
| find -type f -exec chmod 644 {} \;
 |