blob: e9bedd0f4e6cf390cb4b8471ac359bcfe08dfcde [file] [log] [blame]
Denys Vlasenko9f2e82a2009-08-29 20:37:09 +02001# Chars above 0x7f are used as special codes.
2# 0x81 is CTLESC (see ash.c).
3# The bug was that quoting and unquoting of them
4# was out of sync for redirect filenames.
5echo -e 'echo Ok >uni\x81code' >unicode.sh
6echo -e 'cat uni\x81code' >>unicode.sh
7echo -e 'cat uni?code' >>unicode.sh
8. unicode.sh
9rm uni*code*
10echo Done