]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/expansion/length7.0
shell_cmds-207.11.1.tar.gz
[apple/shell_cmds.git] / sh / tests / expansion / length7.0
1 # $FreeBSD: head/bin/sh/tests/expansion/length7.0 221602 2011-05-07 14:32:16Z jilles $
2
3 unset LC_ALL
4 LC_CTYPE=en_US.UTF-8
5 export LC_CTYPE
6
7 # a umlaut
8 s=$(printf '\303\244')
9 # euro sign
10 s=$s$(printf '\342\202\254')
11 # some sort of 't' outside BMP
12 s=$s$(printf '\360\235\225\245')
13 set -- "$s"
14 [ ${#s} = 3 ] && [ ${#1} = 3 ]