使用sed替换xml属性

时间:2015-03-28 06:16:34

标签: xml sed

我的文件包含这样一行:

<virtual-server name="default-host" enable-welcome-root="false">

我想替换:  enable-welcome-root from false to true

使用sed -n 's/.*enable-welcome-root="\([^"]*\).*/\1/p' file  我可以获得false的值,但是如何替换它呢?

3 个答案:

答案 0 :(得分:3)

使用xmlstarlet,并在您的行中添加关闭代码:

xmlstarlet ed -O -u '//virtual-server/@enable-welcome-root[.="false"]' -v "true" <<END
<virtual-server name="default-host" enable-welcome-root="false">
</virtual-server>
END
<virtual-server name="default-host" enable-welcome-root="true">
</virtual-server>

答案 1 :(得分:2)

这会从falsetrue更改为true

sed -r 's/(enable-welcome-root=")[^"]+"/\1true"/' file
<virtual-server name="default-host" enable-welcome-root="true">

或没有-r

sed 's/\(enable-welcome-root="\)[^"]+"/\1true"/'
<virtual-server name="default-host" enable-welcome-root="false">

使用-i写回文件

答案 2 :(得分:1)

您的字符串不包含任何特殊字符。因此:

s='<virtual-server name="default-host" enable-welcome-root="false">'
r='<virtual-server name="default-host" enable-welcome-root="true">'
sed -i -e "s/$s/$r/" file