首先,如果这是错误的 stackexchange,我很抱歉,但它似乎是正确的。
这是我现在的 crontab:
MAILTO=****@gmail.com
10,30,50 * * * * ~/webapps/****/apache2/bin/start
*/10 * * * * /usr/local/bin/python2.7 ~/webapps/****/WR/cron.py > ~/webapps/****/WR/cron.log 2>&1
但是每次将输出放入 cron.log 文件时,所有旧内容都会被覆盖。我该如何阻止这种情况?或者,如果不可能,有什么替代方案?
注意:****
URL 和电子邮件中的是为了隐藏个人信息。
答案1
交换。>
>>
> = write to file, overwriting what was already there
>> = append to file, create if it doesn't exist
IE:
MAILTO=****@gmail.com
10,30,50 * * * * ~/webapps/****/apache2/bin/start
*/10 * * * * /usr/local/bin/python2.7 ~/webapps/****/WR/cron.py >> ~/webapps/****/WR/cron.log 2>&1