summaryrefslogtreecommitdiff
path: root/tools/formatXML.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/formatXML.sh')
-rwxr-xr-xtools/formatXML.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/formatXML.sh b/tools/formatXML.sh
new file mode 100755
index 00000000..c830f306
--- /dev/null
+++ b/tools/formatXML.sh
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+cd ..
+
+for f in $(find -name "*.xml")
+do
+ if [ ${f} != "./items.xml" ]; then
+ xsltproc tools/indent.xsl ${f} > ${f}__
+ mv ${f}__ ${f}
+ fi
+done
+xmlindent items.xml > items.xml_
+sed 's/[[:space:]]*$//' items.xml_ > items.xml