]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/bin/sh/parser/dollar-quote10.0
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / regression / bin / sh / parser / dollar-quote10.0
1 # $FreeBSD$
2
3 # a umlaut
4 s=$(printf '\303\244')
5 # euro sign
6 s=$s$(printf '\342\202\254')
7
8 # Start a new shell so the locale change is picked up.
9 ss="$(LC_ALL=en_US.UTF-8 ${SH} -c "printf %s \$'\u00e4\u20ac'")"
10 [ "$s" = "$ss" ]