4 lines
		
	
	
		
			131 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			4 lines
		
	
	
		
			131 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| echo ping ${HOSTNAME:=localhost} every ${TIMEOUT:=300} sec
 | |
| 
 | |
| while true; do ping -c 1 ${HOSTNAME}; sleep ${TIMEOUT}; done; |