在谷歌上找不到任何关于这个的东西。
所以,我昨天一直在玩crons。我创建了一个 cron 文件,该文件将处于活动状态,称为 notidy.php
.
今天,我在www
目录之外找到了该文件的副本。此外,还有 15 个文件名为 notify.php.1
、notify.php.2
、notify.php.3
等。它们似乎都是空的。
它们是什么?它们是否可以安全移除?
您可以删除这些文件。每次运行 cron 作业时都会创建这些文件,但您可以设置为在 cron 作业运行后自动删除该文件。
如果您使用的是wget
:
方法 1
为避免创建此类文件,应在创建 cron 作业时wget
后添加--delete-after
。
例
0 * * * * wget --delete-after -q http://www.example.com/my-cron.php
方法 2
例:
0 * * * * wget -q -O /dev/null http://your.server/script.php
使用 -O-
输出到standard output
而不是文件
0 * * * * wget -O- http://www.example.com/cron.php
或者,使用curl
其默认行为是输出到standard output
0 * * * * curl http://www.example.com/cron.php