当我从 cron 任务调用脚本时,我想将时间戳跟踪放入两个不同的文件中。一个文件用于 stdout script.log
,另一个用于 stderrscript.err
使用此 cron 行,我可以在文件上获得时间戳script.log
,但不能使用script.err
*/1 * * * * ((/home/user/script.sh) | ts "\%H:\%M:\%.S ->") 2>>/home/user/script.err >> /home/user/script.log
我如何也可以添加时间戳script.err
?