2

I am using echo statements in a shell script. The shell script will be run by a cronjob.Will the output of those echo statements get automatically logged somewhere ?. If yes,where ?

Thank You

4

2 に答える 2

2

通常、crond は出力をユーザーに電子メールで送信します。これを行う方が良いです(crontabエントリの例)

* * * * * /path/to/my/script.sh 2&>1 > /tmp/mylogfile.log
于 2013-04-01T12:14:01.280 に答える
1

syslog を確認するか、スクリプトの出力をファイルにリダイレクトできます。

于 2013-04-01T12:14:44.210 に答える