ubuntu
#服务状态
service cron status
#显示定时任务
crontab -l
#编辑定时任务
crontab -e
#添加命令
* * * * * /root/test.sh
脚本内容test.sh
#!/bin/sh
cd /root
echo `date` > 1.txt
kilall aaa
./aaa -qws &
来源:CSDN
作者:dm_shan
链接:https://blog.csdn.net/dm_shan/article/details/103968371