bash スクリプトで php テンプレート ファイルを読み込み、テンプレート内のいくつかの変数 ( $(variable)
.
もともと持っていた
stuff=$stuff bash templatefile > newfile
非 PHP ファイルの場合
cat <<END
//stuff
END
しかし、私のphpテンプレートファイルは次のようになります
#!/usr/bin/php
<?php
//lots of php variables, so can't use bash variables that have the same $ prefix
?>
PHP も bash などの変数に $ プレフィックスを使用するため、パラメーターを簡単に渡すことができません。どうすればいいですか?