9 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
 | |
| 
 | |
| mount -t tmpfs | cut -d' ' -f3 | \
 | |
| while read MOUNT_POINT; do
 | |
|     mount -o remount,size=30M ${MOUNT_POINT}
 | |
| done
 |