script to validate several XML files at once
authorJonathan Blake <jonathan.blake@projectaon.org>
Fri, 26 Oct 2012 18:58:06 +0000 (18:58 +0000)
committerJonathan Blake <jonathan.blake@projectaon.org>
Fri, 26 Oct 2012 18:58:06 +0000 (18:58 +0000)
git-svn-id: https://projectaon.org/data/trunk@2146 f6f3e2d7-ff33-0410-aaf5-b4bee2cdac11

common/scripts/validate-all.sh [new file with mode: 0755]

diff --git a/common/scripts/validate-all.sh b/common/scripts/validate-all.sh
new file mode 100755 (executable)
index 0000000..8444560
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+for file in "$@"
+do
+    echo "validating $file"
+    rxp -Vs $file
+done