I need to run a bash script in crontab every minute between 8:45am and 9:50am of every day.
Code:
45,4
http://www.nncron.ru/help/EN/working/cron-format.htm
According to that website, you can do something like this:
45-59 8 * * * /home/pull.sh > /home/logs/pull.log 2>&1
I'm not certain what you're looking to do with this line:
00/50 9 * * * /home/pull.sh > home/logs/pull.log 2>&1
I actually don't know what that will do.
Try this:
45-59/1 8 * * * /home/pull.sh > /home/pull.log 2>&1
00-50/1 9 * * * /home/pull.sh > /home/pull.log 2>&1