Cron runs stuff every minute. Use script:
while:
do
sleep 1
some_command || break
done
or in one line:
while:; do sleep 1; some_command || break; done
This will wait 1 second between each execution, so if your command takes 0.75 seconds to run, then this script will run it every 1.75 seconds.
source share