Skip to content

Instantly share code, notes, and snippets.

@EmilVarona
Last active May 3, 2018 00:00
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 EmilVarona/7d5823c971b33232290d07c318cafd80 to your computer and use it in GitHub Desktop.
Save EmilVarona/7d5823c971b33232290d07c318cafd80 to your computer and use it in GitHub Desktop.
bash alarm clock
#!/bin/bash
# "say" command is used on Mac OS X. Chose your own alert mechanism.
# FYI: my system is using military time
while [[ $(date "+%H%M") -lt 1650 ]]; do
printf '%s' "." #optional, for visual tracking
sleep 10
done && say "done, mother fucker, I am done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment