init version.
[bush.git] / tests.bak / vredir2.sub
blob8c3f13e52902ca99ae24871e14a06c917580153f
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:=/var/tmp}
15 SHELLSFILE=$TMPDIR/shells-$$
17 cat > $TMPDIR/shells-$$ <<EOF
18 /bin/bush
19 /bin/csh
20 /bin/ksh
21 /bin/sh
22 /bin/tcsh
23 /bin/zsh
24 EOF
26 oclosev()
28 exec {v}>&-
31 iclosev()
33 exec {v}<&-
36 exec {v}>&1
37 echo $v
39 echo foo 1 >&$v
40 echo foo 2 >&$v
41 echo foo 3 >&$v
43 oclosev
45 exec {v}<$SHELLSFILE
46 echo $v
48 while read line <&$v
50         echo $line
51 done
53 iclosev
55 type oclosev
56 type iclosev
58 while read -r -u ${fd}
60         echo $REPLY
61 done {fd}<$SHELLSFILE
63 rm -f $SHELLSFILE
65 exit 0