0
在下面給出的示例中,我期待在todel.txt文件中的行 $ a = b 。 如何在不處理的情況下添加here doc文本塊?此處預處理文檔
[[email protected]]# cat here_example.sh
#!/bin/sh
cat > todel.txt << heredoc
<?php
$a=b
# this is comment
?>
heredoc
[[email protected]]# cat todel.txt
<?php
=b
# this is comment
?>
請參閱Bash聯機幫助頁上的「Here Documents」。 –