Hi Folks:
Why is it difficult to return a negative exit code to the UNIX Korn shell (on AIX) and see it as I expect it?
/tmp> perl -e 'exit -2' ; echo $?
254
/tmp> perl -e 'exit -1' ; echo $?
255
/tmp> perl -e 'exit -111' ; echo $?
145
/tmp> perl -e 'exit -123' ; echo $?
133
Thank you,
Wayne