What's the cron expression for this? - node.js

I'm new to cron and I'm using this library. I'm trying to figure out how to write an expression which translates to
"every minute, between 10 am and 2:30 pm, Sun-Thur."
What I have so far is * 10 * * 0-4 but I'm not sure how to add the 2:30. All the examples I've seen only have minutes specified in the start, not the end.

That would be:
* 10-13 * * 0-4 command
0-30 14 * * 0-4 command
The first expression runs every minute from 10 to 14 from Sun to Thu, and the second one runs every minute from 14 to 14:30 from Sun to Thu, so basically your cron needs to be done in 2 lines.

Related

Cron expression starting at a fixed time

I can't figure out how to make a cron expression that starts at 11:45 and then runs every 25 minutes every friday between 11:45 and 22:00.
This is the best i could do but i can't make it start at 11:45.
*/25 11-22 * * 5

Schedule cron job from 9:21AM till 02:30PM every 2 minutes

I want to schedule a cron job to run from 9:21 AM till 02:30 PM every 2 minutes from Monday to Friday. How can I do this ?. I know the following can do this from 9 AM till 4 PM, how can I modify this to achieve the above condition.
Thanks in advance.
*/2 09-16 * * 1-5 /temp/test_cron.sh >> /temp/test_cron.log
This is actually the start of the right cron expression. To get what you're looking for, you'll actually have to combine several scheduled expressions, I believe
I highly recommend using the tool Crontab Guru to check your crontab expressions!
# “At every 2nd minute from 21 through 60 past hour 9 on every day-of-week from Monday through Friday.”
21-60/2 9 * * 1-5 /temp/test_cron.sh >> /temp/test_cron.log
# At every 2nd minute past every hour from 10 AM through 1:59 PM on every day-of-week from Monday through Friday.
*/2 10-13 * * 1-5 /temp/test_cron.sh >> /temp/test_cron.log
# At every 2nd minute from 0 through 30 past hour 14 on every day-of-week from Monday through Friday.
0-30/2 14 * * 1-5 /temp/test_cron.sh >> /temp/test_cron.log
Another note that could be helpful is checking the cron mail (I see you're logging, which is great!) but the system usually delivers cron mail detailing cron jobs as well.
Typically this is found in /var/spool/mail/{username}
There is no indication in the man page (man 5 crontab) that what you require is supported in any single line specification, as any ranges that you set will be applied for each time field (e.g. minute, hour) separately, so for example 21-30/2 9-14 ... would mean to run at 21,23,25,27,29 minutes past each of those hours.
You can of course achieve the desired effect using multiple lines:
21-59/2 9 * * 1-5 /temp/test_cron.sh >> /temp/test_cron.log
1-59/2 10-13 * * 1-5 /temp/test_cron.sh >> /temp/test_cron.log
1-30/2 14 * * 1-5 /temp/test_cron.sh >> /temp/test_cron.log
In this case, it is helped a little by the fact that the interval is a factor of an hour, so at least the middle of these three lines will ensure regular intervals during the period 10:01 - 13:59. If you had an interval of, say, 7 minutes, then you would need even more lines to ensure a completely regular interval throughout.
Note also the following comment in the manual page:
The crontab syntax does not make it possible to define all possible
periods one could image off. For example, it is not straightforward to
define the last weekday of a month. If a task needs to be run in a
specific period of time that cannot be defined in the crontab syntaxs
the best approach would be to have the program itself check the date
and time information and continue execution only if the period matches
the desired one.
So you could adopt this approach and just use for example:
1-59/2 9-14 * * 1-5 /temp/test_cron.sh >> /temp/test_cron.log
and perform some test in your shell script (or perhaps a wrapper script) such as:
hhmm=`date +%H%M`
if [ $hhmm -lt 0930 -o $hhmm -gt 1430 ]; then exit; fi
(here we are treating hhmm as a 4-digit decimal number)

Cron job every 5 minutes before 30 minutes

I am trying to create a cron job that fires every 5 minutes before 30, for example:
10:25,
10:55,
11:25,
11:55 etc. I tried */25,55 * * * * but this also sends messages at 10:50 and I'm not sure why, what would be the correct way to do this?
You're looking for the following, which is simply "at minute 25 and minute 55":
25,55 * * * *
In your original attempt, the expression */25 means "every 25th minute". As such, it would execute at 25 minutes after the hour, and then 25 minutes later.. or 50 minutes after the hour.

Run CRON job everyday at specific time

Right now i am running my cron job everyday at 3.00PM
0 15 * * *
But I want to run my cron job twice in a day. 10.30AM and 2.30PM
0 30 10 * * *
I believe this command will run at 10.30AM. How should i run it in 2.30PM?
Cron utility is an effective way to schedule a routine background job at a specific time and/or day on an on-going basis.
Linux Crontab Format
MIN HOUR DOM MON DOW CMD
Example::Scheduling a Job For a Specific Time
The basic usage of cron is to execute a job in a specific time as shown below. This will execute the Full backup shell script (full-backup) on 10th June 08:30 AM.
Please note that the time field uses 24 hours format. So, for 8 AM use
8, and for 8 PM use 20.
30 08 10 06 * /home/yourname/full-backup
30 – 30th Minute
08 – 08 AM
10 – 10th Day
06 – 6th Month (June)
*– Every day of the week
In your case, for 2.30PM,
30 14 * * * YOURCMD
30 – 30th Minute
14 – 2PM
*– Every day
*– Every month
*– Every day of the week
To know more about cron, visit this website.
From cron manual http://man7.org/linux/man-pages/man5/crontab.5.html:
Lists are allowed. A list is a set of numbers (or ranges) separated
by commas. Examples: "1,2,5,9", "0-4,8-12".
So in this case it would be:
30 10,14 * * *
you can write multiple lines in case of different minutes, for example you want to run at 10:01 AM and 2:30 PM
1 10 * * * php -f /var/www/package/index.php controller function
30 14 * * * php -f /var/www/package/index.php controller function
but the following is the best solution for running cron multiple times in a day as minutes are same, you can mention hours like 10,30 .
30 10,14 * * * php -f /var/www/package/index.php controller function

Crontab syntax for non-aligned hourly range?

If I want to schedule a job to occur every five minutes between 9 until 11 pm I can use the following cron trigger:
0/5 21-22 * * *
(or something like 5,10,15,20,25,30,35,40,45,50,55 21-22 * * * for finer control over the minutes if needed).
Is there a way to specify "every five minutes from 9:30 until 11:30"? The trickiness revolves around having e.g. 5 in the minutes field yet skipping it if the hour is 21, and I'm not immediately aware of any way to achieve that.
A simple, workaround would be to add more scheduled jobs in cron...
i.e.
30,35,40,45,50,55 21 * * * /job_to_run
*/5 22 /job_to_run
5,10,15,20,25,30 23 * * * /job_to_run
p.s. Cron usually has the following order:
Minutes Hour DayOfMonth Month DayOfWeek Command

Resources