al-skel/home/bin/check-network

18 lines
408 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
wireless_connected=""
disconnected="/"
ethernet_connected=""
while true; do
2018-02-07 19:38:43 -06:00
if ping -c1 8.8.8.8 &>/dev/null; then
if [[ $(ip link | awk '/state UP/ {getline;print $1}') = link/ether ]]; then
echo "$ethernet_connected"; sleep 10
else
echo "$wireless_connected"; sleep 10
fi
else
echo "$disconnected"; sleep 1
fi
done