Why does my Perl script exit with 137? -
Is there a way to eliminate a warning (exit code 137) in Perl? I'm running a Perl script on Linux in another shell script, it removes the warning and exit code from Perl script 137. I could not tell the meaning of exit code 137.
What is the best way to avoid this warning? I tried to "make any warnings" in the script and I got an exit 0 at the end of my Perl script.
137 = 128 + 9, which means that some other process has sent you a signal 9, That is Sigil To wit. The second script kills you, it looks like this.
Comments
Post a Comment