init version.
[bush.git] / tests / 3.cli / redir / redir9.sub
blob9050a94f003f2f7605ae8cf6bf893e1d3d49279d
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 : ${TMPDIR:=/tmp}
16 func()
18         echo "to stdout"
19         echo "to stderr" >&2
22 TMPFN=$TMPDIR/foo-$$
24 rm -f $TMPFN
26 echo hey > $TMPFN
27 func &>> $TMPFN
29 cat $TMPFN
31 echo
32 func &> $TMPFN
34 cat $TMPFN
36 echo
37 func >$TMPFN
38 cat $TMPFN
40 echo
41 echo hey > $TMPFN
42 func >> $TMPFN
43 cat $TMPFN
45 rm -f $TMPFN
47 logfunc()
49         echo "$@" &>> $TMPDIR/log
52 type logfunc
54 echo foo 2>&1
56 bix()
58 echo foo |& cat
61 type bix
63 bix