加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dtd_check.sh 316 Bytes
一键复制 编辑 原始数据 按行查看 历史
Walter Doekes 提交于 2020-05-10 15:26 . Clearer error report of DTD checks
#!/bin/sh
failures=0
for file in $(find . -name '*.xml'); do
if ! xmllint --path . --dtdvalid ./sipp.dtd $file >/dev/null; then
echo "ERROR: $file failed validation"
failures=$((failures+1))
fi
done
if test $failures -ne 0; then
echo "Not OK" >&2
exit 1
fi
echo "All files OK" >&2
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化