mirror of https://github.com/apache/poi.git
Revert "Add script to call ToCSV"
This reverts commit b7de62ec03f099d48dcd0f2afe08379bd685e668. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773694 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8ee64a82ee
commit
1c6fa8de43
20
tocsv.sh
20
tocsv.sh
|
@ -1,20 +0,0 @@
|
|||
#!/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 "$@"
|
Loading…
Reference in New Issue