5 lines
174 B
Bash
Executable File
5 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
echo ping ${HOSTNAME:=localhost} every ${TIMEOUT:=300} sec
|
|
|
|
while true; do ping -c 1 ${HOSTNAME} | sed -e "1,$ s/^/ /" | sed "s/%//g" ;sleep ${TIMEOUT}; done;
|