我不清楚一个重定向运算符,它是<<

时间:2016-08-11 00:24:42

标签: linux shell redirect

<<的用法对我来说并不清楚,任何人都可以用一个简单的例子解释一下吗?真的很感激。

1 个答案:

答案 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