mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
9 lines
213 B
Text
Executable file
9 lines
213 B
Text
Executable file
# Redirections are not globbed.
|
|
# bash:
|
|
# if run as "sh", they are not globbed, but
|
|
# if run as "bash", they are!
|
|
>z.tmp
|
|
echo TEST >?.tmp
|
|
echo 'z.tmp:' `cat 'z.tmp'`
|
|
echo '?.tmp:' `cat '?.tmp'`
|
|
rm 'z.tmp' '?.tmp'
|