]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/parser/dollar-quote12.0
shell_cmds-207.100.1.tar.gz
[apple/shell_cmds.git] / sh / tests / parser / dollar-quote12.0
1 # $FreeBSD: head/bin/sh/tests/parser/dollar-quote12.0 286971 2015-08-20 21:31:36Z jilles $
2
3 # \u without any digits at all remains invalid.
4 # Our choice is a parse error.
5
6 v=$( (eval ": \$'\u'") 2>&1 >/dev/null)
7 [ $? -ne 0 ] && [ -n "$v" ]