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