From: Dominik Stadler Date: Sun, 11 Dec 2016 20:56:22 +0000 (+0000) Subject: Add script to run BiffViewer X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6a41d746469548fb35191d29b942bf02be6b4ecf;p=poi.git 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 --- diff --git a/BiffViewer.launch b/BiffViewer.launch new file mode 100644 index 0000000000..de070c9a61 --- /dev/null +++ b/BiffViewer.launch @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/view.sh b/view.sh new file mode 100755 index 0000000000..519956cdc6 --- /dev/null +++ b/view.sh @@ -0,0 +1,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 "$@"