如何编辑“/etc/crontab”和“/etc/cron.d/”下的文件?

如何编辑“/etc/crontab”和“/etc/cron.d/”下的文件?

在我的/etc/crontab

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

我们可以使用 crontab 来编辑 下的用户定义的 crontab 文件/var/spool/cron/crontabs/,但不能使用同样的方式来编辑/etc/crontab或 下的文件/etc/cron.d/。他们应该被编辑吗?如果是,怎么办?谢谢。

答案1

使用您喜欢的编辑器。nano并且vim是优秀的编辑。第 6 个字段是条目应运行的用户名。

编辑:

我有一个 BSD 4.2 盒子。在编辑 crontab 文件之前,我必须导出编辑器。

EDITOR=vi
export EDITOR
crontab -e

相关内容