test11.sh 244 B

1234567891011121314
  1. #!./testshell
  2. echo 'Test 11 (variant of 9):'
  3. echo 'Try to break wait using SIGINT before wc completes'
  4. echo 'After you break wait, it should NOT print "Going on"'
  5. echo 'wc &'
  6. gzip < /kernel | wc &
  7. p=$!
  8. echo wait
  9. wait
  10. echo "Going on"
  11. kill $p