Skip to content

Instantly share code, notes, and snippets.

@ahmetozer
Created April 15, 2020 16:30
Show Gist options
  • Save ahmetozer/03fec5b4032cec458e492e15c1b97a28 to your computer and use it in GitHub Desktop.
Save ahmetozer/03fec5b4032cec458e492e15c1b97a28 to your computer and use it in GitHub Desktop.
Check and Notify Cloudflare Dash Status
#!/bin/bash
while true
do
curl https://dash.cloudflare.com --max-time 1 -I && SUCCESS_COUNT=1 || SUCCESS_COUNT=0
if [ "$SUCCESS_COUNT" -gt 9 ]
then
for i in {1..10}
do
echo -e "\a"
sleep 0.3
done
break
fi
sleep 1
done
###
# https://twitter.com/ahmetozer_org/status/1250451174635065348
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment