是否应使用“&”指定linux cron作业以指示它在后台运行?[关闭]


72

在crontab文件中,应该在命令后加上“&”,还是在后台运行该命令?

我有:

*/20 * * * * /home/me/monitor/check.sh /home/me/monitor/check.properties  >> /home/me/monitor/check.log 2>&1 &

我在各个地方都看到了这个问题的矛盾答案。有人说不需要放置“&”,其他人说即使所有输出都已重定向,也可以在没有“&”号cron的情况下等待命令的输出。


似乎这仅适用于@reboot命令
Mr-Programs'Oct

Answers:


97

由cron运行的每个作业都会在后台自动运行,因此不需要 &

也看到这个


9
谢谢。如果我在推荐的末尾指定“&”,那么cron要做的事情是什么?
2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.