如何使用sed命令替换特定值

时间:2015-08-11 19:18:41

标签: regex linux perl sed

我想知道sed命令中的正则表达式是什么来搜索$a文件中的"x"值并替换为$b值。

$a="o=SAR-9|csa_6fe_2ge_v2_r1:3|csa_16ds1_e1_r2|csa_ds3e3_4_r1|csa_aux_alarm|csa_oc3cc_4_r1|csa_oc3_2_asap_r1|csa_oc3cc_4_r1|"

$b="SAR-18"

我尝试使用以下命令来搜索和替换值,但它在perl脚本中不起作用。所以我在sed中寻找正则表达式以匹配$a值。

sed -i s/$a/$b/g <file-name>

1 个答案:

答案 0 :(得分:3)

在Perl中,

# Generate a regex pattern that matches the string in $a
my $a_re = quotemeta($a);

s/$a_re/$b/

以上内容可缩短为

s/\Q$a\E/$b/