12 lines
		
	
	
		
			175 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			175 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # code=`cat /opt/wd/99-Temp/shutdown.txt`
 | |
| 
 | |
| if [[ -f "/opt/wd/99-Temp/shutdown" ]]; then
 | |
|     poweroff
 | |
| elif [[ -f "/opt/wd/99-Temp/reboot" ]]; then
 | |
|     reboot
 | |
| fi
 | |
| 
 | |
| 
 |