crontab用法

最近有个需求每天07:00 和 23:00各运行一个脚本(断网,为了健康夜里就不上网了吧),有现成的可视化框架可以用,那就是青龙面板。但用青龙有点杀鸡用牛刀的感觉,所以就学习一下crontab的用法。

首先编写两个需要运行的脚本 0700.sh2300.sh(根据自己需求来),并给予运行权限。

1
2
3
4
5
6
7
8
9
10
# 查看当前的crontab
crontab -l

# 编辑crontab
crontab -e

# 使用vim命令添加如下两行
* 7 * * * bash /path/to/file/0700.sh
* 7 * * * bash /path/to/file/2300.sh
# 这里建议使用绝对路径

测试脚步正常,收工。