hush/shell/hush_test/hush-parsing/redir_space.tests
Denis Vlasenko ab876cd107 hush: add testsuite for "no globbing in redirection" rule.
simplify redirection habdling
2008-06-18 16:29:32 +00:00

7 lines
211 B
Plaintext
Executable File

v='z1.tmp z2.tmp'
echo TEST >$v
echo 'z1.tmp:' `cat 'z1.tmp' 2>/dev/null; echo $?`
echo 'z2.tmp:' `cat 'z2.tmp' 2>/dev/null; echo $?`
echo '"z1.tmp z2.tmp":' `cat 'z1.tmp z2.tmp' 2>/dev/null; echo $?`
rm z*.tmp