gpt4 book ai didi

linux - 如何在 crontab 中使用 tee 命令

转载 作者:IT王子 更新时间:2023-10-29 01:09:30 28 4
gpt4 key购买 nike

我在 crontab 中设置了一个每 2 小时运行一次的作业,我还希望将我的 bash 输出的日志文件放在一个单独的文件中。

输入:

0 0-23/2 * * * /tmp/sample.sh | tee /tmp/logfile_extract_$(date '+%Y-%m-%d-%H').txt  

输出:

/bin/sh: -c: line 0: unexpected EOF while looking for matching `''
/bin/sh: -c: line 1: syntax error: unexpected end of file

最佳答案

百分号 (%) 符号是 cron 中的一个特殊字符。转义 % 符号。

0 0-23/2 * * * /tmp/sample.sh > /tmp/logfile_extract_$(date '+\%Y-\%m-\%d-\%H').txt 2>&1

关于linux - 如何在 crontab 中使用 tee 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18355370/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com