Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
separated by a hyphen (meaning an inclusive range). Note that the
specification of days can be made in two fields: monthday and weekday.
If both are specified in an entry, they are cumulative. For example,
0 0 1,15 * 1 command
runs command at midnight on the first and fifteenth of each month, as
well as every Monday. To specify days in only one field, set the
other field to asterisk (*). For example,
0 0 * * 1 command
runs command only on Mondays.
0 2 1-7 * * [ $(date +%u) -eq 4 ] && myscript