summaryrefslogtreecommitdiffstats
path: root/ppt2png.sh
blob: eb14b37f6f8e4f9c1835ada943eac92335a608d7 (plain)
1
2
3
4
5
6
7
8
9
#!/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 "$@"