作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
<<
的用法我不清楚,谁能用一个简单的例子解释一下?真的很感激。
最佳答案
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
关于linux - 我不清楚一个重定向运算符,那就是 <<,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38885511/
MVC3 中的助手是否在 Controller 和 View 中使用? 助手是放置常用 Controller 方法的正确位置吗? 我想创建一个通用方法来获取数据库中的所有子子 ID,并确保它位于正确的
有人可以阐明这两者之间的区别吗,因为它们存在于执行上下文中?我很难阅读 ECMA 262 v 5规范并清楚地看到差异。 谢谢你, 最佳答案 两者都是执行上下文的组件(相同类型),但它们有不同的用途(f
我是一名优秀的程序员,十分优秀!