poi/view.sh
Dominik Stadler 6a41d74646 Add script to run BiffViewer
Set property to include escher-records in view.sh and add Launchconfig for BiffViewer

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773609 13f79535-47bb-0310-9956-ffa450edef68
2016-12-11 20:56:22 +00:00

10 lines
310 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 -- "-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 "$@"