]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - bin/sh/tests/errors/redirection-error5.0
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.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