test29.sh 142 B

1234567
  1. #! ./testshell
  2. echo "You should be able to end this script by SIGQUIT, but not by SIGINT"
  3. trap '' 2
  4. trap 'echo SIGQUIT ; exit 1' 3
  5. ./hardguy