mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
This is required by POSIX, and allows things like ENV=\$HOME/.shrc. Note that tilde expansion is explicitly not performed.
11 lines
171 B
Text
11 lines
171 B
Text
# $FreeBSD$
|
|
|
|
export key='must contain this'
|
|
unset x
|
|
r=$(ENV="\${x?\$key}" ${SH} -i +m 2>&1 >/dev/null <<\EOF
|
|
exit 0
|
|
EOF
|
|
) && case $r in
|
|
*"$key"*) true ;;
|
|
*) false ;;
|
|
esac
|