Cron 作业输出文件
我已经使用 cpanel cronjob 工具在我的 PHP 项目中设置了一个 cron 作业。但它正在根目录中创建输出文件。我已经找到了阻止这些输出文件创建的解决方案,但我的问题是,如果我删除这些已创建的文件,会导致任何问题还是会影响 cronjob 程序?
I have set up a cron job in my PHP project by using cpanel cronjob tool. But it is creating output files in root directory. I have find out a solution to block these output file creation, but my question is, if i will delete these already created files, will it cause any problem or will it affect cronjob program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它很可能不会(除非 cron 作业对特定输出文件的存在有某种依赖性)。您可以通过在 cron 命令末尾添加 1>/dev/null 2>/dev/null 来阻止输出文件创建。
It most likely wont(barring some sort of dependency of the cron job on the existence of a particular output file). You can block output file creation by adding 1>/dev/null 2>/dev/null to the end of the cron command.