我有一个Cronjob。我的命令是:wget mysite.com/bot.php
但是这个命令会自动创建名称如下的日志文件:
我该如何防止这种情况?
谢谢!
答案 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
}