diff options
Diffstat (limited to 'dgbuilder/tools/format_xml.sh')
-rwxr-xr-x | dgbuilder/tools/format_xml.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dgbuilder/tools/format_xml.sh b/dgbuilder/tools/format_xml.sh new file mode 100755 index 00000000..f0074e67 --- /dev/null +++ b/dgbuilder/tools/format_xml.sh @@ -0,0 +1,17 @@ +if [ "$#" != "1" ] +then + echo "Usage: $0 xmlFileFullPath" + exit +fi + +if [ -z "$PROJECT_HOME" ] +then + export PROJECT_HOME=$(pwd)/.. +fi +export CLASSPATH=$CLASSPATH:. +if [ -e "$1" ] +then + java FormatXml $1 +else + echo "File $1 does not exist" +fi |