你可以在sed中使用哪些分隔符?

我们通常会看到人们在想要使用包含sed分隔符的模式时抱怨sed中s’错误的未知选项.

例如,如果我们使用/:

$var="hel/lo"
$sed "s/a/$var/g" <<< "haha"
sed: -e expression #1,char 9: unkNown option to `s'

所以我们建议使用另一个分隔符,例如|:

$sed "s|a|$var|g" <<< "haha"
hhel/lohhel/lo

但是,我想知道sed可以接受的分界符是什么…因为它似乎几乎是任何字符,包括正则表达式(*,?,.,…)!

在我的sed(GNU sed)4.2.2中:

$sed 's/a/b/g' <<< "haha"
hbhb
$sed 's_a_b_g' <<< "haha"
hbhb
$sed 's#a#b#g' <<< "haha"
hbhb
$sed 's$a$b$g' <<< "haha"
hbhb
$sed 's?a?b?g' <<< "haha"
hbhb
$sed 's*a*b*g' <<< "haha"
hbhb
$sed 's-a-b-g' <<< "haha"
hbhb
$sed 's.a.b.g' <<< "haha"
hbhb
$sed 'sXaXbXg' <<< "haha"
hbhb
$sed 'sxaxbxg' <<< "haha"
hbhb
$sed 's1a1b1g' <<< "haha"
hbhb

如果它被转义,即使是在这里工作:

$sed 'saaabag' <<< "haha"
sed: -e expression #1,char 5: unkNown option to `s'
$sed 'sa\aabag' <<< "haha"
hbhb

这有什么规格吗?

解决方法

也许最接近标准的POSIX / IEEE Open Group Base Specification says

[2addr] s/BRE/replacement/flags

Substitute the replacement string for instances of the BRE in the
pattern space. Any character other than backslash or newline can be used instead of a slash to delimit the BRE and the replacement. Within the BRE and the replacement,the BRE delimiter itself can be used as a literal character if it is preceded by a backslash.”

相关文章

/etc/sysctl.conf这个目录主要是配置一些系统信息,/etc/sys...
1.作用 useradd或adduser命令用来建立用户帐号和创建用户的起...
它们都是多模式编辑器,不同的是vim 是vi的升级版本,它不仅...
不管是我们在安装软件还是监测软件的使用性能,我们都要随时...
装好Tomcat7后,发现除了本机能访问外界访问不了,岂有此理。...
修改防火墙配置需要修改 /etc/sysconfig/iptables 这个文件,...