如何防止CronJob创建日志文件?

时间:2017-01-07 14:35:05

标签: php cron cpanel

我有一个Cronjob。我的命令是:wget mysite.com/bot.php但是这个命令会自动创建名称如下的日志文件:

  • bot.php
  • bot.php.1
  • bot.php.2
  • bot.php.3
  • 等...

我该如何防止这种情况?

谢谢!

1 个答案:

答案 0 :(得分:1)

我假设您尝试在不在本地存储任何信息的情况下运行脚本。

尝试将 self.tag = x // x is a unique number label.isUserInteractionEnabled = true let tapGesture = UITapGestureRecognizer(target: self, action:#selector(self.alertClicked(sender:))) self.label.addGestureRecognizer(tapGesture) tapGesture.delegate = self 添加到cron命令的末尾,这会将输出转储到/ dev / null,这基本上是一个黑洞(此处最终的任何内容都是无法恢复的)。

示例cron命令是:

func alertClicked(sender: UITapGestureRecognizer){
    print(self.tag)// prints x

}