in reply to Re: What is a successful return status for perl wait() in Solaris?
in thread What is a successful return status for perl wait() in Solaris?

wait() return the pid, but $? returns the return status. For example: $a = wait(); $a is the pid and $? is the return status.
  • Comment on Re^2: What is a successful return status for perl wait() in Solaris?