0
我有一個配置文件。例如:config.xml它有以下配置。如何使用shell腳本sed命令替換文件中xml標記之間的值?
<!-- Admin username for the Authentication manager. -->
<Username>adminusername</Username>
<!-- Admin password for the Authentication manager. -->
<Password>adminpassword}</Password>
我需要通過運行shell腳本來更改值「adminusername」和「adminpassword」。我怎樣才能達到這個使用sed?
sed的是不是一個好的選擇,以XML的輸入工作,看到https://stackoverflow.com/questions/1794995/find-and-replace-in-xml-file-using-sed – Sundeep