How can I tail the running cron job, so that I can come to the conclusion that my job is going on.
|
feedback
|
migrated from stackoverflow.com May 17 '11 at 10:41
This question came from our site for professional and enthusiast programmers.
|
In your script you could echo something like
If you want to check 'live' what your job is doing, just do Another option is to log the start (or the end) of your script in syslog with the | |||||
feedback
|
|
You need to find out the PID of your job:
After that you can check if your job is working, by tracing its actions with | ||||
|
feedback
|