이것:
cat <<EOF
one
two
three
EOF
인쇄:
one
two
three
이:
cat <<EOF
one \\
two \\
three
EOF
인쇄:
one \
two \
three
그러나 그럼에도 불구하고:
cat <(
cat <<EOF
one
two
three
EOF
)
인쇄:
one
two
three
이것:
cat <(
cat <<EOF
one \\
two \\
three
EOF
)
인쇄:
one \two \three
어떻게 되어가나요? 이 경우 개행 문자가 사라지는 이유는 무엇입니까?