类似地,数字可以用模式来代替。下面的 sed 命令以 [0-9] 替换所有数字为 number 。
# sed 's/[0-9]/number/g' sed-test.txt -
number Unix unix unix numbernumber number linux Linux numbernumber number linuxunix UnixLinux linux /bin/bash CentOS Linux OS Linux is free and opensource operating system
12) 如何用模式仅查找和替换两个数字
如果你想用模式来代替两位数字,使用下面的 sed 命令。
# sed 's/b[0-9]{2}b/number/g' sed-test.txt -
1 Unix unix unix number 2 linux Linux number 3 linuxunix UnixLinux linux /bin/bash CentOS Linux OS Linux is free and opensource operating system
13) 如何用 sed 命令仅打印被替换的行
如果你想显示仅更改的行,使用下面的 sed 命令。
p - 它在终端上输出替换的行两次。
-n - 它抑制由 p 标志所产生的重复行。
# sed -n 's/Unix/Linux/p' sed-test.txt -
1 Linux unix unix 23 3 linuxunix LinuxLinux
14) 如何同时运行多个 sed 命令
以下 sed 命令同时检测和置换两个不同的模式。
下面的 sed 命令搜索 linuxunix 和 CentOS 模式,用 LINUXUNIX 和 RHEL8 一次性更换它们。
# sed -e 's/linuxunix/LINUXUNIX/g' -e 's/CentOS/RHEL8/g' sed-test.txt -
1 Unix unix unix 23 2 linux Linux 34 3 LINUXUNIX UnixLinux linux /bin/bash RHEL8 Linux OS Linux is free and opensource operating system
下面的 sed 命令搜索替换两个不同的模式,并一次性替换为一个字符串。
以下 sed 的命令搜索 linuxunix 和 CentOS 模式,用 Fedora30 替换它们。
# sed -e 's/(linuxunix|CentOS)/Fedora30/g' sed-test.txt -
1 Unix unix unix 23 2 linux Linux 34 3 Fedora30 UnixLinux linux /bin/bash Fedora30 Linux OS Linux is free and opensource operating system
15) 如果给定的模式匹配,如何查找和替换整个行
如果模式匹配,可以使用 sed 命令用新行来代替整行。这可以通过使用 c 标志来完成。
# sed '/OS/ c New Line ' sed-test.txt -
1 Unix unix unix 23 2 linux Linux 34 3 linuxunix UnixLinux New Line Linux is free and opensource operating system
16) 如何搜索和替换相匹配的模式行
在 sed 命令中你可以为行指定适合的模式。在匹配该模式的情况下,sed 命令搜索要被替换的字符串。
下面的 sed 命令首先查找具有 OS 模式的行,然后用 ArchLinux 替换单词 Linux 。
# sed '/OS/ s/Linux/ArchLinux/' sed-test.txt -
1 Unix unix unix 23 2 linux Linux 34 3 linuxunix UnixLinux linux /bin/bash CentOS ArchLinux OS Linux is free and opensource operating system
(编辑:南京站长网)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|