7

XML starlet中的 XML 处理有什么替代方法bash吗?我的典型用法是:

  • 漂亮的格式;
  • 通过 选择数据XPath
4

1 回答 1

3

看看xmllint

要格式化 xml:

$ xmllint --format file.xml

要评估 XPath:

$ xmllint --format --shell file.xml <<< "cat /some/xpath/expression"
于 2012-12-10T08:38:00.820 回答