2023-11-16 23:19:36 -05:00

13 lines
231 B
Plaintext
Executable File

# syntax error should return status 2
cat >test.sh <<EOF
)
EOF
chmod +x test.sh
$THIS_SH ./test.sh
echo Done:$?
rm -f test.sh
# redirection error with special builtin should return status 1
(eval cat <does_not_exist)
echo Done:$?