mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-28 07:59:50 +02:00
19 lines
258 B
Bash
19 lines
258 B
Bash
#!./testshell
|
|
|
|
echo 'Test 4: Three shells all loop. You should be able to terminate this'
|
|
echo ' script with just one SIGINT or SIGQUIT'
|
|
|
|
if [ $ZSH_VERSION ] ; then
|
|
source lib.sh
|
|
else
|
|
. lib.sh
|
|
fi
|
|
|
|
(
|
|
(
|
|
endless
|
|
)
|
|
endless
|
|
)
|
|
endless
|