861acdd80b4aa8334485a0ef778f8390667d519f
[platform/upstream/bash.git] / tests / misc / redir.t4.sh
1 echo "Point 1"
2 exec 3</etc/passwd
3 exec 4>a
4 exec 5>b
5 echo "Point 2"
6 echo to a 1>&4
7 echo to b 1>&5
8 exec 11</etc/printcap
9 echo "Point 3"
10 echo to a 1>&4
11 echo to b 1>&5
12 exit 0