summaryrefslogtreecommitdiff
path: root/bin/sh/tests/errors/redirection-error5.0
blob: 1af2937839c2b75edd5fb34db37ea273392d1edc (plain)
1
2
3
4
# A redirection error on a subshell should not abort the shell.
exec 2>/dev/null
( echo bad ) </var/empty/x
exit 0