in reply to Re^2: CSH script that calls a perl script
in thread CSH script that calls a perl script
Would you be happy with your Perl script returning 0 for success and 255 for failure? If so, take note...
$ perl -e'die'; echo "GOT $?" Died at -e line 1. GOT 255 $ perl -e'exit'; echo "GOT $?" GOT 0
|
|---|