If we define a cron job with * * * * * /some/task/to/perform, how many times the job will executed in 60 seconds?
Asked
Active
Viewed 1,528 times
-5
1 Answers
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?