Running ksh script via cron job on Linux
I scheduled a job via CRON on Linux server:
>crontab -e
30 09 * * * /etc/cron.d/myscript.ksh 2>&1 >> /etc/cron.d/myscript.log
The job did not run and nothing got written to the log file. Actually log file does not even get generated
What am I doing wrong?
>crontab -e
30 09 * * * /etc/cron.d/myscript.ksh 2>&1 >> /etc/cron.d/myscript.log
The job did not run and nothing got written to the log file. Actually log file does not even get generated
What am I doing wrong?
0