aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-redir/redir8.tests
blob: 2bd38674900b53970d4300fce900879cfcf75885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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
printf 'v=uni\x81code\n' >>unicode.sh
printf 'echo Ok >"$v"\n' >>unicode.sh
printf 'cat uni\x81code\n' >>unicode.sh
printf 'cat uni?code\n' >>unicode.sh
. ./unicode.sh
rm uni*code*
echo Done