hush/shell/hush_test/hush-vars/var3.tests
Mike Frysinger dc3bc40578 hush: add support for special vars in braces
Some people like to use ${?} rather than $?, so make sure we support all
the special single char vars that use this form.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-06-01 14:16:43 -04:00

5 lines
142 B
Plaintext
Executable File

# reject invalid vars
"$THIS_SH" -c 'echo ${1q}'
"$THIS_SH" -c 'echo ${&}'
#"$THIS_SH" -c 'echo ${$}' -- this is valid as it's the same as $$