1. 程式人生 > >crontab 秒級定時任務

crontab 秒級定時任務

1, vim test.sh

#!/usr/bin/sh
step=5
for (( i = 0; i < 60; i=(i+step) )); do
wget http://localhost:8080/jobTest/test –delete-after
sleep $step
done
exit 0
:wq

2,crontab -e
新增一行 * * * * * /home/www/fb/test.sh