Skip to content

Instantly share code, notes, and snippets.

@jakekara
Created June 20, 2019 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakekara/01d29918156c089048fb849517e5415d to your computer and use it in GitHub Desktop.
Save jakekara/01d29918156c089048fb849517e5415d to your computer and use it in GitHub Desktop.
tell me when it's lunch time
while [ 1 = 1 ]; do if [ $(date +"%H") = "12" ]; then say LUNCH TIME; break; else echo NOT LUNCH TIME; sleep 60; fi; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment