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.
Are you sure today is 17th ?bazil2 said:Can anyone tell me why my cronjob fired today (Thursday 17th)?
That condition can not be set only with crontab.bazil2 said:My intention was that it should fire at 4 minutes past 7 on the first and third Tuesday in the month.
Let the command be started more times than needed, then add some conditions later.man crontab said:If you specify both a day in the month and a day of week, the result is effectively ORd... the crontab entry will be run on the specified day of week and on the specified day in the month.
04 07 1-7,14-21 * * (( $( date +%w )==2 )) && /path/to/my/script
[gray]#!/bin/bash[/gray]
[teal](([/teal] [navy]$([/navy] date [teal]+%[/teal]w [teal])==[/teal][purple]2[/purple] [teal]))[/teal] [teal]||[/teal] [COLOR=chocolate]exit[/color]
[gray]# ...[/gray]
[red](([/red] [green]$([/green] date +%w [green])[/green]==2 [red]))[/red] [blue]&&[/blue] /path/to/my/script
[red]|[/red] [green]|[/green] [green]|[/green] [red]|[/red] [blue]|[/blue]
[red]|[/red][green]command substitution[/green][red]|[/red] [blue]AND list operator[/blue]
[red]arithmetic evaluation[/red]