mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 15:43:18 +02:00
25 lines
380 B
Plaintext
25 lines
380 B
Plaintext
# test being able to use job control notation in jobs/kill/wait without
|
|
# job control active, as the SUS requires
|
|
|
|
sleep 5 &
|
|
|
|
sleep 5 &
|
|
sleep 5 &
|
|
sleep 5 &
|
|
(sleep 5 ; exit 4) &
|
|
|
|
jobs
|
|
|
|
wait %%
|
|
echo $?
|
|
|
|
wait %1
|
|
echo $?
|
|
|
|
wait
|
|
|
|
# the sleep is intended to give the kill time to execute before the job
|
|
# exits
|
|
(sleep 1 ; cat ) &
|
|
kill -1 %% && echo i killed it || echo could not kill it
|