i-bash/tests/misc/redir.t4.sh

13 lines
181 B
Bash
Raw Normal View History

1996-08-26 18:22:31 +00:00
echo "Point 1"
exec 3</etc/passwd
1996-12-23 17:02:34 +00:00
exec 4>/tmp/a
exec 5>/tmp/b
1996-08-26 18:22:31 +00:00
echo "Point 2"
echo to a 1>&4
echo to b 1>&5
exec 11</etc/printcap
echo "Point 3"
echo to a 1>&4
echo to b 1>&5
exit 0