我有sed命令,当字符串与起始模式匹配时删除行
sed -i "/^Data\=C\b/Id" tally.ini
这适用于补丁Data = C
但是我想匹配路径Data = C:\并且我想要删除这一行。
这怎么可能?
答案 0 :(得分:1)
sed -i '/^Data\=C:\\/Id' tally.ini
Put the command in a single quoted string instead of double. Escape the backslash.