blob: 621d12017b36d43b0762019a4502f2b37b8107c8 [file] [log] [blame]
Denys Vlasenko66a781a2015-09-04 03:27:08 +02001# Redirections are not globbed.
2# bash:
3# if run as "sh", they are not globbed, but
4# if run as "bash", they are!
5>z.tmp
6echo TEST >?.tmp
7echo 'z.tmp:' `cat 'z.tmp'`
8echo '?.tmp:' `cat '?.tmp'`
9rm 'z.tmp' '?.tmp'