android_mt6572_jiabo/external/busybox/shell/ash_test/ash-redir/redir7.tests
2025-09-05 16:56:03 +08:00

12 lines
337 B
Text
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.
>unicode.sh
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