0

前几天我编辑了我的 crontab 文件,但旧设置仍在运行。

我正在使用 Apache。所以我去了

/etc/crontab

我保存了它。但是旧的 crontab 仍在运行。这不是编辑 crontab 的地方吗?我哪里做错了?

谢谢!

这是我的 grep cron:

[root]# ps aux | grep cron
root      1396  0.0  0.4   3000   704 pts/0    S+   21:12   0:00 grep cron
root      8114  0.0  0.5   4412   968 ?        Ss    2011   0:02 crond
4

1 回答 1

2

这可能是其他一些板的问题,但答案是您不直接编辑 cron 文件,您使用工具“crontab”作为可执行文件。运行 man crontab 或 Google crontab。

EDITOR=emacs (or vim or whatever) to set you editor first.

crontab -e 

编辑

crontab -l 

列出当前的 cron 任务

于 2012-12-30T01:57:58.113 回答