in reply to ActivePerl exit codes

You can set your own exit code in perl like this:
exit $exit_code;
So it's likely that the answer is in the perl code you are running.

Joost.

Replies are listed 'Best First'.
Re^2: ActivePerl exit codes
by qadwjoh (Scribe) on Jun 11, 2004 at 10:36 UTC
    What I have is a Perl command in a Windows batch file which for some reason is failing with an exit code of 13. The Perl script itself can't exit with this number - there is no "exit 13" in my code - therefore it must be a problem with the Perl command itself.

    A
        I can't see the error message as the script wasn't run by myself - all I have to go on is that the exit code is 13.