Sign in
nest-open-source
/
nest-learning-thermostat
/
5.1.6
/
busybox
/
b2cf790ce23df9cace07ab4486c11f983c120d3d
/
.
/
busybox-1.19.3
/
shell
/
hush_test
/
hush-glob
/
glob_redir.tests
blob: 621d12017b36d43b0762019a4502f2b37b8107c8 [
file
] [
log
] [
blame
]
# 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'