前面导读:
《RHCE考试通关秘籍第一式--巧破linux密码》
https://www.easthome.com/front/teacherReportInfo/reportInfo/detial?tid=186
《RHCE考试通关秘籍第二式—不会配置网络你就Over了》
https://www.easthome.com/front/teacherReportInfo/reportInfo/detial?tid=843
《RHCE考试通关秘籍第三式—你必须知道的SELinux》
https://www.easthome.com/front/teacherReportInfo/reportInfo/detial?tid=844
《RHCE考试通关秘籍第四式—软件包安装基础之YUM配置》
https://www.easthome.com/front/teacherReportInfo/reportInfo/detial?tid=850
《RHCE考试通关秘籍第五式—调整逻辑卷的大小》
https://www.easthome.com/front/teacherReportInfo/reportInfo/detial?tid=851
《RHCE考试通关秘籍第六式—用户帐号的那点事》
https://www.easthome.com/front/teacherReportInfo/reportInfo/detial?tid=852
《RHCE考试通关秘籍第七式—配置文件权限》
https://www.easthome.com/front/teacherReportInfo/reportInfo/detial?tid=853
文章正文:
这么快,就到了第八式,第八式是最简单的一道题,主要配置一下任务计划。
举个栗子,假设要求如下:
给harry用户配置计划任务 每天14:23分执行/bin/echo hello |
我们只需要按如下去做,就OK了
# crontab -u harry -e 23 14 * * * /bin/echo hello |
最后,别忘了检查
# crontab -u harry -l |
这首题就结束了。