We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is from simple/hack/scripts/check-network I don't believe these Chinese symbols should be there.
#!/usr/bin/env bash
count=0 connected="說" disconnected="ﲁ"
ID="$(ip link | awk '/state UP/ {print $2}')"
while true; do if (ping -c 1 archlinux.org || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then if [[ $ID == e* ]]; then echo "$connected Online" ; sleep 25 else echo "$connected Online" ; sleep 25 fi else echo "$disconnected Offline" ; sleep 5 fi done
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is from simple/hack/scripts/check-network
I don't believe these Chinese symbols should be there.
#!/usr/bin/env bash
count=0
connected="說"
disconnected="ﲁ"
ID="$(ip link | awk '/state UP/ {print $2}')"
while true; do
if (ping -c 1 archlinux.org || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then
if [[ $ID == e* ]]; then
echo "$connected Online" ; sleep 25
else
echo "$connected Online" ; sleep 25
fi
else
echo "$disconnected Offline" ; sleep 5
fi
done
The text was updated successfully, but these errors were encountered: