How to run cron job every one hour and 10 min

Elad Dotan :

I did the following:

0 */10 * * * {CMD}

but it worked until midnight and didn't continue the next day. Can someone please suggest something?

mvp :

Use this:

10 * * * * {CMD}

which means start new job at 10 minutes of every hour: 1:10, 2:10, ...

If you want to start at 1:10, 2:20, 3:30, ..., then you will need to write a lot of manual rules, each starting at those times (or write your own scheduler).

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How to set up a cron job to run an executable every hour?

Running a cron job randomly for every one hour

Run cron job every 5 min

execute cron job every 2 hour with 30 min duration

How to setup CRON job to run every 10 seconds in Linux?

How to run a cron job every 10 seconds in ruby on rails

How to set cron job run every hour and stop run 6 pm

cron expression to run a job every hour but only on weekdays?

how to configure jenkins scheduler to run a job every hour at a specific time/min?

How to set a Cron job in Every one hour from 9:00 am to 6:00 pm ( Monday to Friday )

How to run a cron job to execute every minute?

How run Codeigniter php function in controller using Cron Jobs every one hour via cPanel

Can a cron job be set to run every hour at 5 minutes after the hour?

Why does my cron job run every 1 minute although I set it every 1 hour?

Why my cron job is running every minute when it is scheduled to run every hour?

Run Cron job every 10 minutes between two hours

How to run a cron jobs in every minute for a specific hour on server

How to schedule python job to run every hour accurately with the schedule package

windows10: task scheduler: basic task: how to run a task every one hour

Run cron job every 2 minutes except the first minute "0" of the first hour "0"

Can I run a CRON job for an hour

cron job for hour=7-19 runs every hour instead

How to setup cron job to run every 5 days?

How would I get a cron job to run every 30 minutes?

How to run a cron job every 5 hours (on Linux)

How to set a cron job to run every 3 hours

How to set a cron job on Skygear to run every 12 hours?

run cron every minute during a specific hour?

How to run one job at a time but all of them each hour?