From: Jonathan Blake Date: Fri, 26 Oct 2012 18:58:06 +0000 (+0000) Subject: script to validate several XML files at once X-Git-Tag: 20130222~62 X-Git-Url: https://git.projectaon.org/?a=commitdiff_plain;ds=sidebyside;h=f4ac4765a1239984694eb805b9c2f321d4f8d0a0;p=project-aon.git script to validate several XML files at once git-svn-id: https://projectaon.org/data/trunk@2146 f6f3e2d7-ff33-0410-aaf5-b4bee2cdac11 --- diff --git a/common/scripts/validate-all.sh b/common/scripts/validate-all.sh new file mode 100755 index 0000000..8444560 --- /dev/null +++ b/common/scripts/validate-all.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +for file in "$@" +do + echo "validating $file" + rxp -Vs $file +done