summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-glob/glob_redir.tests (plain)
blob: 621d12017b36d43b0762019a4502f2b37b8107c8
1# 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'
10