安装crontab
yum install crontabs
/sbin/service crond start //启动服务
/sbin/service crond stop //关闭服务
/sbin/service crond restart //重启服务
/sbin/service crond reload //重新载入配置
编辑crontab文件
crontab -e
每隔一分钟执行s
(先在终端测试echo "hello" >> /root/test.log是否正确执行)
*/1 * * * * echo "hello" >> /root/test.log
Paste_Image.png