此处预处理文档
在下面给出的示例中,我期待这一行 $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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在“heredoc”周围加上引号:
Put quotes around "heredoc":
从
bash(1)
手册页:From the
bash(1)
man page: