improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / 3.cli / redir / redir7.sub
blobd4f77f01030e2a29a37f45453c5ccf769239b681
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 # weird redirections that caused trouble and were fixed in post-3.0 bush
15 stuff()
17         c=1
18         ( sleep 5 < /dev/null >/dev/null 2>&1 & ) &
21 exec 3>&1
22 eval `
23 exec 4>&1 >&3 3>&-
25         stuff 4>&-
26         echo "c=$c" >&4
28 echo c1 is $c
30 unset -f stuff
32 stuff()
34         c=2
35         ( sleep 5 < /dev/null >/dev/null 2>&1 & )
38 exec 3>&1
39 eval `
40 exec 4>&1 >&3 3>&-
42         stuff 4>&-
43         echo "c=$c" >&4
45 echo c2 is $c
47 unset -f stuff
49 stuff()
51         c=3
52         { sleep 5 < /dev/null >/dev/null 2>&1 & } &
55 exec 3>&1
56 eval `
57 exec 4>&1 >&3 3>&-
59         stuff 4>&-
60         echo "c=$c" >&4
62 echo c3 is $c
64 unset -f stuff
66 stuff()
68         c=4
69         { sleep 5 < /dev/null >/dev/null 2>&1 & }
72 exec 3>&1
73 eval `
74 exec 4>&1 >&3 3>&-
76         stuff 4>&-
77         echo "c=$c" >&4
79 echo c4 is $c
81 # fixed in bush-3.1
82 echo 'exec <&3' | ${THIS_SH} 3<&0