hush/shell/ash_test/ash-redir/redir7.tests
Denys Vlasenko 9f2e82ad2e ash: add testsuite for bug 585
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2009-08-29 20:37:09 +02:00

11 lines
321 B
Plaintext
Executable File

# 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