XML格式化缩进标签匹配 – Linux

前端之家收集整理的这篇文章主要介绍了XML格式化缩进标签匹配 – Linux前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 XML文件,其格式是相当压缩的,所有标签都粘在一起
<PersonalData><IndividualDetails><Title>Mr</Title><Gender>Male</Gender><FirstName>Hae</FirstName><Surname>JONES</Surname><Occupation>Banker</Occupation><DateofBirth>4/6/76</DateofBirth><LastKnownAddress></LastKnownAddress><LastKnownPostCode>00145</LastKnownPostCode><OtherNames></OtherNames></IndividualDetails><OccupationDetails><Company>SD Bank</Company><CompanyAddress>Sunset Boulevard NY</CompanyAddress><ContactNo>335698457</ContactNo></OccupationDetails></PersonalData>

shell中是否有任何可以正确格式化标签的命令.如果不缩进,只需将标签添加到自己的行也可以解决我的问题.

xmllint --format <your-xml-file>

$cat test.xml
<a><b>c</b></a>
$xmllint --format test.xml
<a>
  <b>c</b>
</a>
$xmllint --format test.xml > test.formatted.xml
$cat test.formatted.xml
<a>
  <b>c</b>
</a>
$

猜你在找的XML相关文章