mirror of
https://github.com/apache/poi.git
synced 2025-02-07 10:38:12 +00:00
6216145e16
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773618 13f79535-47bb-0310-9956-ffa450edef68
10 lines
261 B
Bash
Executable File
10 lines
261 B
Bash
Executable File
#!/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 "$@"
|