使用sed在双引号之间插入正斜杠

时间:2016-05-20 13:53:08

标签: sed escaping

这是我在文件中的字符串:

url = "http://some.com";

我想将其更改为:

url = "http://someother.com";

使用:

sed -i 's/url = ".*"/url = "http://someother.com"/g' index.html

但我收到此错误:

sed: -e expression #1, char 27: unknown option to `s'

如果我从字符串中删除了两个正斜杠,我插入就可以了。我怎么能逃脱这些?

0 个答案:

没有答案