-5

If we define a cron job with * * * * * /some/task/to/perform, how many times the job will executed in 60 seconds?

  • Did you read the [man page](http://man7.org/linux/man-pages/man8/cron.8.html)? Cause your answer is right there.. – GregL Mar 04 '16 at 18:50
  • I am new in linux world and man pages are hard for me to understand. And I asked this question because I was not able to find satisfiable answer anywhere. – Kashyap Kansara Mar 04 '16 at 18:52
  • The provided duplicate question has no answer that clarifies how many times a cron job run in 60 seconds for all *. – Kashyap Kansara Mar 04 '16 at 18:59
  • @KashyapKansara Sure it does. "Every minute of every day of every week of every month, that command runs." Every minute means your command will be run once every 60 seconds. – ceejayoz Mar 04 '16 at 20:47

1 Answers1

1

The cron job runs every minute.

Unix cron is limited to minutes. If you want faster cronjob execution see How can I schedule a cron job that runs every 10 seconds in linux?

WeSee
  • 476
  • 1
  • 4
  • 10