我需要使用 unix 脚本或命令执行此操作 /home/user/app/xmlfiles 中有一个 xml 文件,例如
<book>
<fiction type='a'>
<author type=''></author>
</fiction>
<fiction type='b'>
<author type=''></author>
</fiction>
<Romance>
<author type=''></author>
</Romance>
</book>
我想将小说中的作者类型编辑为本地。
<fiction>
<author type='Local'></author>
</fiction>
我需要更改作者类型带有属性 b 的 fiction 标签单独。请使用 unix shell 脚本或命令帮助我。谢谢!
答案1
如果您只是想替换<author type=''><\/author>
,<author type='Local'><\/author>
您可以使用该sed
命令:
sed "/<fiction type='a'>/,/<\/fiction>/ s/<author type=''><\/author>/<author type='Local'><\/author>/g;" file
但是,在处理 xml 时,我推荐使用 xml 解析器/编辑器,例如xmlstarlet:
$ xmlstarlet ed -u /book/*/author[@type]/@type -v "Local" file
<?xml version="1.0"?>
<book>
<fiction>
<author type="Local"/>
</fiction>
<Romance>
<author type="Local"/>
</Romance>
</book>
使用-L
标志以内联方式编辑文件,而不是打印更改。
答案2
xmlstarlet edit --update "/book/fiction[@type='b']/author/@type" --value "Local" book.xml
答案3
我们可以使用 xsl 文档doThis.xsl
并将其source.xml
处理xsltproc
为newFile.xml
。
xsl 基于此的答案问题。
将其放入doThis.xsl
文件中
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="no"/>
<!-- Copy the entire document -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<!-- Copy a specific element -->
<xsl:template match="/book/fiction[@type='b']/author">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
<!-- Do something with selected element -->
<xsl:attribute name="type">Local</xsl:attribute>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
现在我们生产newFile.xml
$: xsltproc -o ./newFile.xml ./doThis.xsl ./source.xml
这将是newFile.xml
<?xml version="1.0" encoding="UTF-8"?>
<book>
<fiction type="a">
<author type=""/>
</fiction>
<fiction type="b">
<author type="Local"/>
</fiction>
<Romance>
<author type=""/>
</Romance>
</book>
查找 B 类小说的表达式是XPath
。
答案4
使用 相当简单sed
。以下脚本将更改文件的内容a.xml
并将原始内容a.bak
作为备份。
它的作用是搜索每个文件中的字符串<author type=''>
并将其替换为<author type='Local'>
。/g
修饰符意味着它将尝试在每行上进行多次替换(如果可能)(示例文件不需要)。
sed -i.bak "s/<author type=''>/<author type='Local'>/g" a.xml