Comment 2 for bug 1487517

Revision history for this message
Bogdan Dobrelya (bogdando) wrote :

The exit code should be fine. I tested it with a simple script and it returns 1:

# cat test.sh
foo(){
  kill -0 9999; local rc=$?
  echo $rc
}

foo