Run a cronjob more than once a minute 2010-07-08 10:26am
I needed to run a cronjob to log some stats every 15 seconds. Cron only allows you run a command at minimum once a minute. This presents a problem, but you can cheat using sleep to get around it.
* * * * * ~/loggingscript.pl ; sleep 15 ; ~/loggingscript.pl ; sleep 15 ; ~/loggingscript.pl ; sleep 15 ; ~/loggingscript.pl




