此处预处理文档

发布于 2024-10-21 15:02:00 字数 296 浏览 5 评论 0原文

在下面给出的示例中,我期待这一行 $a=b 在 todel.txt 文件中。 如何按原样添加此处的文档文本块而不进行处理?

[root@localhost]# cat here_example.sh 
#!/bin/sh
cat > todel.txt << heredoc
<?php
$a=b
# this is comment
?>
heredoc

[root@localhost]# cat todel.txt 
<?php
=b
# this is comment
?>

In the example given below, I was expecting the line
$a=b
in the todel.txt file.
How do I add the here doc text block as it is without processing?

[root@localhost]# cat here_example.sh 
#!/bin/sh
cat > todel.txt << heredoc
<?php
$a=b
# this is comment
?>
heredoc

[root@localhost]# cat todel.txt 
<?php
=b
# this is comment
?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

滥情稳全场 2024-10-28 15:02:00

在“heredoc”周围加上引号:


#!/bin/sh
cat > todel.txt << "heredoc"
<?php
$a=b
# this is comment
?>
heredoc

Put quotes around "heredoc":


#!/bin/sh
cat > todel.txt << "heredoc"
<?php
$a=b
# this is comment
?>
heredoc
浊酒尽余欢 2024-10-28 15:02:00

bash(1) 手册页:

如果word中有任何字符
带引号,delimiter是对word去掉引号的结果,
此处文档中的行未展开。

#!/bin/sh
cat > todel.txt << "heredoc"
<?php
$a=b
# this is comment
?>
heredoc

From the bash(1) man page:

If any characters in word are
quoted, the delimiter is the result of quote removal on word, and the
lines in the here-document are not expanded.

#!/bin/sh
cat > todel.txt << "heredoc"
<?php
$a=b
# this is comment
?>
heredoc
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文