topcommand.txt
次のコマンドを含むテキストファイルがあります。
* * * * * /usr/bin/top -c | grep 'some process name' >> /home/abcd/topout.txt
を使用してこれを呼び出すと、crontab topcommand.txt
ファイルは生成されますがtopout.txt
空のファイルです。
top
私の注文に問題がありますか?
答え1
以下を試してください。
* * * * * /usr/bin/top -c | grep 'some process name' >> /home/abcd/topout.txt 2>&1
ここにいくつかの説明があります。
http://www.unix.com/solaris/207049-help-what-does-2-1-do-crontab.html