我想從我的腳本中隨機選擇,並將它貓放到/tmp/test.php文件中的一個新文件中,但它不會創建一個文件。我認爲使用EOF將選擇我需要和處理它,但它似乎不起作用。貓'在這裏文檔'文本塊到新文件
#!/bin/bash
cat /tmp/test.php << \EOF
<?php
test, you are awesome, haha.
test 2, this is some php, not finished,.
?>
EOF
echo script continues
....
....
Continues
etc
現在,我應該能夠去tmp和看我的test.php的 東西,我做錯了
更換'貓的/ tmp/test.php'與'cat> /tmp/test.php'。 – John1024