linux下的crontab 写定时任务:
通过如下命令,就可以开启本用户的定时文件,文件存放在 /var/spool/cron/crontabs 文件夹下
并且以当前用户的名字命名的文件。
crontab -e
# m h dom mon dow command
*/1 * * * * curl http://svnapi.wlphp.com/api.php //每隔1分钟通过curl命令向url发送get请求
*/1 * * * * echo 11111>>wllog.txt //每隔1分钟向文件wllog.txt写入11111
wl2304@ubuntu:~$ /etc/init.d/cron restart //重启cron服务
[ ok ] Restarting cron (via systemctl): cron.service.
crontab -e //编辑定时任务文件
/etc/init.d/cron restart //重启定时任务服务