-
Oct082012
编辑crontab时无法用wq退出编辑状态
一查,原来系统默认用的不是vi/vim编辑器。
(通过 env查看环境变量得知系统默认编辑器 EDITOR=/usr/bin/emacs)
而是emacs编辑器,那么就得了解该编辑器如何退出状态了。
再一查,原来是用ctrl+x 接着再ctrl+c
这时会提示是否保存,选择y 就保存退出啦。
也可以直接用vi/vim编辑器直接编辑 /var/spool/cron/iplaylinux
有的linux版本可能是 /usr/spool/...阅读全文
-
May012011
如何在crontab执行完成之后,不发邮件给root
最近帮其它部门作了个定时发送一个报表的crontab 任务,发送完成后,我自己的邮箱会收到执行结果的邮件。因为该任务是长期的任务,如果天天这么收这个邮件下去,实在没有必要,邮件还占用空间呢?
crontab每次执行完成都会自动发送邮件给执行任务的用户。
解决办法:
将标准输出取消即可。
因为该任务是shell脚本。
于是在该shell脚本最后加上:...阅读全文
-
Apr252011
Crontab – Quick Reference
Setting up cron jobs in Unix and Solaris
cron is a unix, solaris utility that allows tasks to be automatically run in the background at regular intervals by the cron daemon. These tasks are often termed as cron jobs in unix , solaris. Crontab (CRON TABle) is a file which contains the schedule of cron entries to be run and at specifie...阅读全文