Skip to content

Instantly share code, notes, and snippets.

@unacceptable
Created July 2, 2020 20:08
Show Gist options
  • Save unacceptable/f741430f408d0d05958f0bbcc2cf34d8 to your computer and use it in GitHub Desktop.
Save unacceptable/f741430f408d0d05958f0bbcc2cf34d8 to your computer and use it in GitHub Desktop.
ENDPOINT=https://something/ping
while true; do
curl -s "$ENDPOINT" > /dev/null &&
printf "." ||
printf "\n%sFAIL\n" "$(date)";
sleep;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment