sh testsuite: create hush-redir/* and move files around

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2016-10-02 17:55:51 +02:00
parent 1b73f8471a
commit c4cf542c57
30 changed files with 143 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# 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.
>unicode.sh
printf 'echo Ok >uni\x81code\n' >>unicode.sh
printf 'cat uni\x81code\n' >>unicode.sh
printf 'cat uni?code\n' >>unicode.sh
. ./unicode.sh
rm uni*code*
echo Done