mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-15 16:10:50 +02:00
13 lines
181 B
Bash
13 lines
181 B
Bash
echo "Point 1"
|
|
exec 3</etc/passwd
|
|
exec 4>/tmp/a
|
|
exec 5>/tmp/b
|
|
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
|