I’m trying to execute a copy of the Perl interpreter using Java’s Runtime.exec(). However, it returned error code 9. After running the file a few times, the perl interpreter mysteriously started to return code 253 with no changes in my command at all.
What does code 253 / code 9 mean? A Google search for perl interpreter’s exit codes turned up nothing. Where can I find a list of exit codes for the Perl interpreter?
See perldoc perlrun:
Thus, the program you are running must be somehow specifying those exit values via die, exit or equivalent.