]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - bin/sh/tests/errors/redirection-error5.0
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / bin / sh / tests / errors / redirection-error5.0
1 # $FreeBSD$
2 # A redirection error on a subshell should not abort the shell.
3 exec 2>/dev/null
4 ( echo bad ) </var/empty/x
5 exit 0