hi friends
in my little perl script (test.pl) I do the following in order to exit from program if EXIT_STATUS equal to 1
if ( $EXIT_STATUS == 1 )
{
system (exit);
}
but I need also to get from the test.pl return code 1
for example
./test.pl
echo $?
how to enable return code 1 if EXIT_STATUS = 1 ?
lidia