2009-09-16 17:34:07 +05:30
|
|
|
# Chars above 0x7f are used as special codes.
|
|
|
|
# 0x81 is CTLESC (see ash.c).
|
|
|
|
# The bug was that quoting and unquoting of them
|
|
|
|
# was out of sync for redirect filenames.
|
|
|
|
|
|
|
|
# Subcase when redirect filename is specified in a variable.
|
|
|
|
|
|
|
|
>unicode.sh
|
|
|
|
echo -e 'v=uni\x81code' >>unicode.sh
|
|
|
|
echo -e 'echo Ok >"$v"' >>unicode.sh
|
|
|
|
echo -e 'cat uni\x81code' >>unicode.sh
|
|
|
|
echo -e 'cat uni?code' >>unicode.sh
|
2010-05-18 17:41:21 +05:30
|
|
|
. ./unicode.sh
|
2009-09-16 17:34:07 +05:30
|
|
|
rm uni*code*
|
|
|
|
echo Done
|