Skip to content

Instantly share code, notes, and snippets.

@matteocrippa
Created July 30, 2020 08:02
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 matteocrippa/e431cb738582fda43234c1c56de82612 to your computer and use it in GitHub Desktop.
Save matteocrippa/e431cb738582fda43234c1c56de82612 to your computer and use it in GitHub Desktop.
Heroku Scheduler Monthly
# first day of the month
if [ "$(date +%d)" = 01 ]; then command; fi
# 15th day of the month
if [ "$(date +%d)" = 15 ]; then command; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment