sed命令用于删除其中包含特殊字符的起始模式匹配

时间:2017-10-13 04:24:39

标签: linux sed grep

我有sed命令,当字符串与起始模式匹配时删除行

sed -i "/^Data\=C\b/Id" tally.ini

这适用于补丁Data = C

但是我想匹配路径Data = C:\并且我想要删除这一行。

这怎么可能?

1 个答案:

答案 0 :(得分:1)

sed -i  '/^Data\=C:\\/Id' tally.ini

Put the command in a single quoted string instead of double. Escape the backslash.