Last active
February 7, 2023 06:08
-
-
Save oliveratgithub/7d9201b828c5156657c03a2fb6bd5941 to your computer and use it in GitHub Desktop.
Simple one-liner curl command for macOS/Unix bash terminal to repeatedly check a specific url
This file contains 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
# Remark: list of valid timezones: wikipedia.org/wiki/List_of_tz_database_time_zones | |
clear; while [ : ]; do curl -sSL -w '%{http_code} %{url_effective} ' "https://github.com" -o /dev/null; echo $(TZ=":Europe/Zurich" date); sleep 5; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment