diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-07-20 20:59:18 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-07-20 20:59:18 -0700 |
commit | 4e9e719d1eb5564e3594099a456da19bfb7a9c02 (patch) | |
tree | 830863850ef383aa4543c50c3c71d20191825c91 /client/formatXML.sh | |
parent | d8f85017074530278ea87fe76dce023406147539 (diff) | |
download | tools-4e9e719d1eb5564e3594099a456da19bfb7a9c02.tar.gz tools-4e9e719d1eb5564e3594099a456da19bfb7a9c02.tar.bz2 tools-4e9e719d1eb5564e3594099a456da19bfb7a9c02.tar.xz tools-4e9e719d1eb5564e3594099a456da19bfb7a9c02.zip |
Add guesswork XSD for xml files
Diffstat (limited to 'client/formatXML.sh')
-rwxr-xr-x | client/formatXML.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/client/formatXML.sh b/client/formatXML.sh deleted file mode 100755 index c830f30..0000000 --- a/client/formatXML.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/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 |