I have following issue.
I need to run same script (with different args) in different 5 different dates.
- 1x per month
- 2x per month
- 3x per month
- 4x per month
- every day
My current code:
1x month (run every month 1st day, 9:00)
0 9 1 * * php /script.php 1
2x month (need to setup cron)
? php /script.php 2
3x month (need to setup cron)
? php /script.php 3
4x month (run every Monday, 9:00)
0 9 * * 1 php /script.php 4
every day (run every day, 9:00)
0 9 * * * php /script.php e