crontab

# /etc/cron.allow优先 /etc/cron.deny
#  If neither  of  these files  exists, only the super user will be allowed
1、格式
crontab [ -u user ] 文件
crontab [ -u user ] { -l | -r | -e }
 配置文件:/etc/crontab
2、主要参数
-e:执行文字编辑器来设定时程表,内定的文字编辑器是vi。
-r:删除目前的时程表。
-l:列出目前的时程表。
3. 格式    [分 时 日 月 周] 命令
执行crontab -e  此时系统会打开一个vi编辑器。
35 17 *  *  5 wall "Tomorrow is Saturday ,have a good time!",然后存盘退出。
这时在/var/spool/cron/目录下会生产一个root的文件.每个星期五17:35系统就会弹出消息,双休愉快!
 
在/etc/crontab 里的固定定义时间 通过 run-parts
后台执行 /etc/cron.{daily,hourly,monthly,weekly}目录下的所有脚本

你可能感兴趣的:(crontab,职场,休闲)