Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 crontab 文件中,是否应使用尾随“&”指定命令,或者该命令无论如何都会在后台运行?
我有:
*/20 * * * * /home/me/monitor/check.sh /home/me/monitor/check.properties >> /home/me/monitor/check.log 2>&1 &
我在不同的地方看到了这个问题的矛盾答案。有人说不需要放一个“&”,其他人说没有 & 号 cron 等待命令的输出,即使所有输出都被重定向。
cron 运行的每个作业都会在后台自动运行,因此不需要&
&
也看到这个。