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.
我在 shell 脚本中使用 echo 语句。shell 脚本将由 cronjob 运行。这些 echo 语句的输出会自动记录在某处吗?如果是,在哪里?
谢谢你
通常 crond 会将输出通过电子邮件发送给用户。你最好这样做(示例 crontab 条目)
* * * * * /path/to/my/script.sh 2&>1 > /tmp/mylogfile.log
您可以检查系统日志或将脚本的输出重定向到文件。