Isto:
cat <<EOF
one
two
three
EOF
Impressões:
one
two
three
E isso:
cat <<EOF
one \
two \
three
EOF
Impressões:
one \
two \
three
Mas enquanto isso:
cat <(
cat <<EOF
one
two
three
EOF
)
Impressões:
one
two
three
Isto:
cat <(
cat <<EOF
one \
two \
three
EOF
)
Impressões:
one \two \three
O que está acontecendo? Por que as linhas novas estão desaparecendo nessa situação?