]> git.saurik.com Git - apple/shell_cmds.git/blame - sh/tests/parameters/env1.0
shell_cmds-198.tar.gz
[apple/shell_cmds.git] / sh / tests / parameters / env1.0
CommitLineData
71aad674
A
1# $FreeBSD$
2
3export key='must contain this'
4unset x
5r=$(ENV="\${x?\$key}" ${SH} -i +m 2>&1 >/dev/null <<\EOF
6exit 0
7EOF
8) && case $r in
9*"$key"*) true ;;
10*) false ;;
11esac