shell-utils/sys/netcheck

12 lines
292 B
Plaintext
Raw Permalink Normal View History

2023-07-15 19:21:25 +00:00
#!/usr/bin/env bash
nchk=$(/home/gmgauthier/.local/bin/ifcheck)
ping -q -n -c1 "1.1.1.1" &>"/dev/null"
if [[ "${?}" -ne 0 ]]; then
/home/gmgauthier/.local/bin/cecho "BRed" "UNAVAILABLE"
elif [[ "${#args[@]}" -eq 0 ]]; then
/home/gmgauthier/.local/bin/cecho "IGreen" "AVAILABLE"
fi