blob: e9bedd0f4e6cf390cb4b8471ac359bcfe08dfcde (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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.
echo -e 'echo Ok >uni\x81code' >unicode.sh
echo -e 'cat uni\x81code' >>unicode.sh
echo -e 'cat uni?code' >>unicode.sh
. unicode.sh
rm uni*code*
echo Done
|