Linux – cron job schedule

cronlinuxrhel

I created a cron job using * */2 * * * schedule. Can anyone tell me what schedule this refers to?

I guess it should execute every 2 hours, but it seems to execute every minute.

Best Answer

You should use 0 */2 * * * for running job every 2 hours

Related Question