13 lines
120 B
Plaintext
Executable File
13 lines
120 B
Plaintext
Executable File
while read line1; do
|
|
read line2 <&3
|
|
echo $line1 - $line2
|
|
done <<EOF1 3<<EOF2
|
|
one
|
|
two
|
|
three
|
|
EOF1
|
|
alpha
|
|
beta
|
|
gamma
|
|
EOF2
|