How to Run Crontab Every Second
How to Execute Cron Jobs Every Second in Linux
銆€銆€Many times, our scheduled tasks need to run with second-level precision, but Linux only supports scheduling down to the minute by default. Most built-in versions of Linux don’t natively support second-level execution. Using sleep makes it easy to execute tasks by the second.
1. The sleep format is as follows:
sleep 5 …