我有文件,其中包含:插入字符串包含「/」
hello
test1
DocumentRoot /var/www/html/
test2
hey
現在我嘗試線下加上「world
」「DocumentRoot /var/www/html/
」
,使其看起來像這樣:
hello
test1
DocumentRoot /var/www/html/
world
test2
hey
這是我很難,因爲上面的行包含「/
」 我試過,但它迪□不工作:
sed 's/DocumentRoot /var/#www/#html/#\ /DocumentRoot /var/#www/#html/#\nworld/' file
它給了我一個完全錯誤的輸出
hallo
test1
var/var/www/html/
test2
hey
你可以像這樣使用:'sed's @ regex @ replace @'' – sat
我們應該能夠根據SO文檔來關閉一個問題:P https://stackoverflow.com/documentation/sed/1096/substitution/12280/using-different-delimiters#t = 201611030947028728011 – Sundeep
您是否嘗試過尋找解決方案,經常詢問這個問題? – 123