用 sed 找到匹配时替换整行

我需要替换整个行与 sed如果它匹配的模式。 例如,如果一行是“ one two six three four”,如果有“ six”,那么整行应该被替换为“ fault”。

117104 次浏览

你可以用以下两种方法中的任何一种:

sed 's/.*six.*/fault/' file     # check all lines
sed '/six/s/.*/fault/' file     # matched lines -> then remove

它获取包含 six的完整行,并将其替换为 fault

例如:

$ cat file
six
asdf
one two six
one isix
boo
$ sed 's/.*six.*/fault/'  file
fault
asdf
fault
fault
boo

它是基于 这个解决方案使用 Sed 替换包含字符串的整行

更一般地说,可以使用表达式 sed '/match/s/.*/replacement/' file。这将在包含 match的那些行中执行 sed 's/match/replacement/'表达式。在你的情况下,这将是:

sed '/six/s/.*/fault/' file

如果我们有’一二六八十一三四’,我们想 包括“八”和“十一”作为我们的“坏”字?

在这种情况下,我们可以在多种情况下使用 -e:

sed -e 's/.*six.*/fault/' -e 's/.*eight.*/fault/' file

诸如此类。

或者:

sed '/eight/s/.*/XXXXX/; /eleven/s/.*/XXXX/' file

这可能对您有用(GNU sed) :

sed -e '/six/{c\fault' -e ';d}' file

或:

sed '/six/{c\fault'$'\n'';d}' file

上面的答案对我来说很有用,只是提到了另一种方法

匹配单个模式并替换为一个新模式:

sed -i '/six/c fault' file

匹配多个模式并用一个新模式替换(连接命令) :

sed -i -e '/one/c fault' -e '/six/c fault' file

那一行的内容替换包含指定字符串的整行

文本文件:

Row: 0 last_time_contacted=0, display_name=Mozart, _id=100, phonebook_bucket_alt=2
Row: 1 last_time_contacted=0, display_name=Bach, _id=101, phonebook_bucket_alt=2

单线:

$ sed 's/.* display_name=\([[:alpha:]]\+\).*/\1/'
output:
100
101

由空白分隔的多个字符串:

$ sed 's/.* display_name=\([[:alpha:]]\+\).* _id=\([[:digit:]]\+\).*/\1 \2/'
output:
Mozart 100
Bach 101

调整正则表达式以满足您的需要

[ : alpha ]和[ : digital: ] Rel = “ nofollow noReferrer”> 字符类和括号表达式