This repository has been archived on 2024-09-01. You can view files and clone it, but cannot push or open issues or pull requests.
al-skel/home/bin/check-network

18 lines
408 B
Bash
Executable File

#!/usr/bin/env bash
wireless_connected=""
disconnected="/"
ethernet_connected=""
while true; do
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