定时任务设置步骤
编写任务脚本
#!/bin/bash
/opt/python39/bin/python3 /home/<yourusername>/kode/hello.py >/dev/null 2>&1
脚步文件名称为test.sh
修改定时任务
crontab -e
# test.sh
* * * * * /home/<yourusername>/kode/test.sh
查看定时任务
crontab -l
2022-01-08 23:47:28
#!/bin/bash
/opt/python39/bin/python3 /home/<yourusername>/kode/hello.py >/dev/null 2>&1
脚步文件名称为test.sh
crontab -e
# test.sh
* * * * * /home/<yourusername>/kode/test.sh
crontab -l
下一篇:Linux定时任务