Created
June 29, 2020 22:01
-
-
Save libert-xyz/7715721aad11a66e0e76a8e5f9ac93da to your computer and use it in GitHub Desktop.
Check URL every second
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
while true; do sleep 1; curl http://www.google.com; echo -e '\n\n\n'$(date);done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
return only headers:
while true; do sleep 1; curl -I http://www.google.com; echo -e '\n\n\n'$(date);done