使用`sed`命令

时间:2017-07-14 14:11:37

标签: sed replace text-processing

我正在尝试替换文件中模式的出现。文件中的行如下所示:

****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?

0 个答案:

没有答案