Textwrangler——尝试运行 xmllint 命令

Textwrangler——尝试运行 xmllint 命令

当我跑步时:

#!/bin/sh
xmllint --c14n "$*" | XMLLINT_INDENT=$'\t' xmllint --encode UTF-8 --format -

我明白了

/private/var/folders/Aj/Aj9m3c8JGnmkccHY2o3lKE+++TI/Cleanup At Startup/Tidy XML.sh.S:1:解析器错误:预期开始标记,但未找到 '<' question_autoSwitch ^ -:1:解析器错误:文档为空

^ -:1:解析器错误:预期为开始标记,但未找到“<”

有些事情非常错误。:P

有任何想法吗?

答案1

尝试一下这个:

#!/bin/bash
XMLLINT_INDENT=$'\t' xmllint --encode UTF-8 --format - $*

相关内容