in reply to Re: Getting return code to shellin thread Getting return code to shell
use constant { PASSED => 0, FAILED => 1, ABORTED => 2, }; # then use: exit PASSED; exit FAILED; #etc [download]