1
0
Fork 0
mirror of synced 2025-03-06 20:53:29 +01:00
bash-shxdumper/tests/errors3.sub

7 lines
242 B
Text

# redirection errors with special builtins should exit the shell when in
# Posix mode, not otherwise; being on the LHS of || or && should not make
# a difference
exec 9<no_such_file || echo TEST
set -o posix
exec 9<no_such_file || echo TEST