mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-28 16:09:51 +02:00
14 lines
244 B
Bash
14 lines
244 B
Bash
#!./testshell
|
|
|
|
echo 'Test 11 (variant of 9):'
|
|
echo 'Try to break wait using SIGINT before wc completes'
|
|
echo 'After you break wait, it should NOT print "Going on"'
|
|
|
|
echo 'wc &'
|
|
gzip < /kernel | wc &
|
|
p=$!
|
|
echo wait
|
|
wait
|
|
echo "Going on"
|
|
kill $p
|