commit bash-20080828 snapshot

This commit is contained in:
Chet Ramey
2011-12-07 09:28:04 -05:00
parent dd4f3dd893
commit 40c8fbee93
78 changed files with 7535 additions and 3603 deletions
+14 -12
View File
@@ -6,28 +6,30 @@ func()
echo "to stderr" >&2
}
rm -f $TMPDIR/foo
TMPFN=$TMPDIR/foo-$$
echo hey > $TMPDIR/foo
func &>> $TMPDIR/foo
rm -f $TMPFN
cat $TMPDIR/foo
echo hey > $TMPFN
func &>> $TMPFN
cat $TMPFN
echo
func &> $TMPDIR/foo
func &> $TMPFN
cat $TMPDIR/foo
cat $TMPFN
echo
func >$TMPDIR/foo
cat $TMPDIR/foo
func >$TMPFN
cat $TMPFN
echo
echo hey > $TMPDIR/foo
func >> $TMPDIR/foo
cat $TMPDIR/foo
echo hey > $TMPFN
func >> $TMPFN
cat $TMPFN
rm -f $TMPDIR/foo
rm -f $TMPFN
logfunc()
{