mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-28 16:09:51 +02:00
14 lines
182 B
Tcsh
14 lines
182 B
Tcsh
#!./testcsh -f
|
|
|
|
echo 'Test 2: You should not be able to end cat using anything besides SIGKILL'
|
|
|
|
source lib.csh
|
|
|
|
onintr -
|
|
|
|
while (1)
|
|
echo cat
|
|
cat
|
|
echo Exited with $?
|
|
end
|