我有一个文本文件,其中包含如下所述的行
<property>PASSWORD_X_1</property>
<property>PASSWORD_A_2</property>
<property>PASSWORD_B_6</property>
等等等等..
现在我希望将这些行更改为:
<property>{PASSWORD_X_1}</property>
<property>{PASSWORD_A_2}</property>
<property>{PASSWORD_B_6}</property>
我可以使用简单的 sed 表达式更改初始的“{”:
sed -e '/PASSWORD/{PASSWORD/g'
无法弄清楚如何附加“}”字符。
有什么建议么..?
Ĵ