cron 作业脚本创建不需要的文件
我有一个 cron 作业脚本,我使用 >/dev/null 2>&1 来停止发送电子邮件。但每次都会以与 PHP 文件相同的名称创建一个带有尾随数字的文件,例如 phpfile.php.1、phpfle.php.2、phpfile.php.3…。 有什么脚本可以阻止它吗?
I have a cron job script and i used >/dev/null 2>&1 to Stop sending Emails. But each time a file is created in the same name of PHP file with trailing numbers like phpfile.php.1, phpfle.php.2, phpfile.php.3….
Is there any script to stop that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
-O /dev/null
添加到您的wget
命令中。Add
-O /dev/null
to yourwget
command.