<<
的用法对我来说并不清楚,任何人都可以用一个简单的例子解释一下吗?真的很感激。
答案 0 :(得分:2)
cat <<'EOF'
hello $$
I'm a here document that doesn't interpolate
any $-variables because of the qutoes around
the EOF marker
EOF
echo -------
cat <<EOF
hello $$
I'm a here document that does interpolate
EOF
echo -------
cat <<x
It doesn't matter what you use as the end of file marker
x
echo -------
cat <<'x'
Quotes prevent $-interpolation
x
输出:
hello $$
I'm a here document that doesn't interpolate
any $-variables because of the qutoes around
the EOF marker
-------
hello 29843
I'm a here document that does interpolate
-------
It doesn't matter what you use as the end of file marker
-------
Quotes prevent $-interpolation