0
以下の例では、todel.txtファイルに $ a = b という行があります。 ここで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」を参照してください。 –