blob: 519956cdc61f8fc22e042d7eb65f40e0625fcdce (
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 -- "-examples" | grep -v -- "-excelant" | grep -v -- "-ooxml" | grep -v -- "-scratchpad"`;do
CP=$i
done
echo Using jar $CP
java -cp $CP org.apache.poi.hssf.dev.BiffViewer --escher "$@"
|