]> source.dussan.org Git - poi.git/commitdiff
Add script to call ToCSV
authorDominik Stadler <centic@apache.org>
Sun, 11 Dec 2016 20:57:49 +0000 (20:57 +0000)
committerDominik Stadler <centic@apache.org>
Sun, 11 Dec 2016 20:57:49 +0000 (20:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773630 13f79535-47bb-0310-9956-ffa450edef68

tocsv.sh [new file with mode: 0755]

diff --git a/tocsv.sh b/tocsv.sh
new file mode 100755 (executable)
index 0000000..2abf30b
--- /dev/null
+++ b/tocsv.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+# find jar-file with highest version number
+for i in `ls build/dist/poi-*.jar | grep -v -- "-sources" | grep -v -- "-excelant" | grep -v -- "-scratchpad" | grep -v -- "-javadoc"`;do
+       CP=$i:$CP
+done
+
+for i in `ls ooxml-lib/*.jar | grep -v -- "xmlbeans-2.3.0.jar"`;do
+       CP=$i:$CP
+done
+
+if [ "$CP" = "" ]
+then
+       echo Did not find jar files in directory build/dist, please run target "jar"
+       exit 1
+fi
+
+echo Using jar $CP
+
+java -cp $CP org.apache.poi.ss.examples.ToCSV "$@"