1834554 Members
3489 Online
110069 Solutions
New Discussion

Re: cron return codes

 
SOLVED
Go to solution
Elena Leontieva
Esteemed Contributor

cron return codes

Hello,

What does rc=3 mean? Where can I get the list of all cron return codes?

Thank you,
Elena.

5 REPLIES 5
Coolmar
Esteemed Contributor
Jeff_Traigle
Honored Contributor

Re: cron return codes

cron simply states the return code of whatever program it ran. You'll need to check your script or whatever executable it is to see what that return code means to it.
--
Jeff Traigle
Peter Godron
Honored Contributor
Solution

Re: cron return codes

spex
Honored Contributor

Re: cron return codes

Hi Elena,

The script or command that you cron'ed exited with a return code of 3--cron did not generate it. Consult the script or command documentation for its meaning.

PCS
Elena Leontieva
Esteemed Contributor

Re: cron return codes

I got an idea.