10 lines
261 B
Bash
10 lines
261 B
Bash
|
#!/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 -- "-ooxml"`;do
|
||
|
CP=$CP:$i
|
||
|
done
|
||
|
echo Using classpath $CP
|
||
|
|
||
|
java -cp $CP org.apache.poi.hslf.examples.PPT2PNG "$@"
|