Skip to content

Instantly share code, notes, and snippets.

@vitalibertas
Created August 13, 2017 03:45
Show Gist options
  • Save vitalibertas/732c0b2a251f480c287ca6418ab1be65 to your computer and use it in GitHub Desktop.
Save vitalibertas/732c0b2a251f480c287ca6418ab1be65 to your computer and use it in GitHub Desktop.
Bash script being polite during work hours. Does hour math to sleep until 5:00 pm.
if [ $(date +"%-H") -ge 4 ] && [ $(date +"%-H") -le 17 ]; then
sleep $(((17 - $(date +"%-H")) * 60))m
else
sleep 5m
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment