在Ubuntu上,我想得到一个磁盘文件:
foo $(bar)
我想使用cat命令创建此文件,例如
cat <<EOF > baz.txt type_magic_incantation_here_that_will_produce_foo_$(bar) EOF
问题是美元符号.我尝试了反斜杠,单引号和双引号字符的多种组合,但无法使其工作.
您可以在here文档中使用常规引用运算符:
原文链接:https://www.f2er.com/bash/387115.html$cat <<HERE > foo \$(bar) > HERE foo $(bar)
或者您可以通过引用here-doc分隔符来禁用扩展:
$cat <<'HERE' # note single quotes > foo $(bar) > HERE foo $(bar)