这是我在文件中的字符串:
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'
如果我从字符串中删除了两个正斜杠,我插入就可以了。我怎么能逃脱这些?