,如果我有文件SOME_FILE命名,與內容如下:猛砸,sed的:具有多文件內容替換模式
first line
second line
third line
和內部腳本:
VAR1="first line\nsecond line\nthird line"
VAR2="`cat some_file`"
我希望VAR1和VAR2是相同,但它顯然不是這樣根據sed:
sed "s/^a/${VAR1}/" some_another_file # this is OK
sed "s/^a/${VAR2}/" some_another_file # this fail with syntactic error
我想,換行表示我有點不同,但我找不到如何讓VAR2等於VAR1。
在此先感謝
@ user665920:在編輯器中,然後按CTRL + K – Erik 2011-03-18 11:34:31
請提交UNIX和GNU/Linux的選擇代碼/命令[unix.stackexchange.com](http://unix.stackexchange.com/)上相關的問題 – ierax 2011-03-18 11:37:42