我正在尝试替换文件中模式的出现。文件中的行如下所示:
****time is = 0000
****time is = 0001
我正在尝试逐个字符串不敏感time is
进行搜索,并希望将time is = xxxx
替换为****
。
我尝试使用sed 's/time \ is/.*' filename.txt
但我收到错误sed: -e expression #1, char : unterminated 's' command
有什么建议吗?
更新
我更正了命令。 sed 's/time \ is/.*/' filename.txt
但是这个地方.* = xxxx
这不是我想要的。我想用****
替换整个模式。
Original line: ****time is = 0000
Desired output: ********
任何sugegstions?