dotfiles/home/default/scripts/phoenix

13 lines
161 B
Bash
Executable File

#!/bin/sh
while [ 1 ]
do
ping -c5 https://google.com
if [ $? -eq 0]; then
echo Ping check ok, waiting...
else
poweroff
fi
done