mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 23:53:18 +02:00
10 lines
138 B
Plaintext
10 lines
138 B
Plaintext
# pd ksh and zsh fail this one
|
|
echo -n "bgwait "
|
|
(
|
|
sleep 2
|
|
echo -n "sleep done... "
|
|
) &
|
|
waitcmd="wait $!"
|
|
eval $waitcmd
|
|
echo "$waitcmd"
|