Created
July 2, 2020 20:08
-
-
Save unacceptable/f741430f408d0d05958f0bbcc2cf34d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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