GNU paralleに、2つ以上の引数を渡す例

コマンド

$ cat <<EOF | parallel --colsep ' ' echo 1={1} 2={2}
a b
c d
e f
EOF

出力

1=a 2=b
1=c 2=d
1=e 2=f