Cron Solaris 10
Is there an opportunity to write STDERR message to the /var/cron/log file when a job fails to execute? Or only the return codes can开发者_JS百科 be written?
I think the /var/cron/log is only used by cron itself, but you could redirect stderr into some other log file:
00 23 * * * /path/to/whatever 2>/some/log
00 11 * * * /path_to_script 1>/output_file_name 2>/error_file_name
It will write standard output to /output_file_name and standard error to /error_file_name
精彩评论