<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'
無法弄清楚如何追加「}」字符。
任何建議..?
Ĵ
就像一個魅力!不知道'&'表示sed中當前匹配的字符串。非常感謝dav1d。 – joesatch