aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-heredoc/heredocB.tests
blob: 45ea4687f5adb509c5d6c926dcad16ef572a7da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
while read line1; do
	read line2 <&3
	echo $line1 - $line2
done <<EOF1 3<<EOF2
one
two
three
EOF1
alpha
beta
gamma
EOF2