Linux–定时命令crontab
-l #列出所有任务
-e #编辑任务
-u #指定用户
file #使用文件内的任务
任务格式
* * * * * command
五列分别是
minute 0-59
hour 0-23
day of month 1-31
month 1-12 (or names, see below)
day of week 0-7 (0 or 7 is Sun, or use names)
注意事项:
- command里不要包含
@
- crontab的环境变量特别少,脚本出错多半是这个原因
示例:
启动firefox
* * * * * /home/user/ff.sh
#!/bin/bash
export DISPLAY=:0 && /usr/lib/firefox/firefox.sh www.baidu.com
如果想用crontab启动带窗口的界面,记得export DISPLAY=:0
note:关于修改默认编辑器,运行select-editor
或者直接修改~/.selected_editor
即可