aboutsummaryrefslogtreecommitdiffstats
path: root/view.sh
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2016-12-11 20:58:42 +0000
committerDominik Stadler <centic@apache.org>2016-12-11 20:58:42 +0000
commit3b423628845235b029feea9b88f370c402b70d1a (patch)
treed1d13b9daea3c454b12cb7407330a80d43490fd8 /view.sh
parent09ffbfcdd55d2269176467e56a37973c28aef8b3 (diff)
downloadpoi-3b423628845235b029feea9b88f370c402b70d1a.tar.gz
poi-3b423628845235b029feea9b88f370c402b70d1a.zip
Enhance view.sh for HWPF/doc files
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773642 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'view.sh')
-rwxr-xr-xview.sh13
1 files changed, 10 insertions, 3 deletions
diff --git a/view.sh b/view.sh
index c92f877f4f..8eb31ca43a 100755
--- a/view.sh
+++ b/view.sh
@@ -1,7 +1,7 @@
-#!/bin/sh
+#!/bin/bash
# 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" | grep -v -- "-javadoc"`;do
+for i in `ls build/dist/poi-*.jar | grep -v -- "-sources" | grep -v -- "-examples" | grep -v -- "-excelant" | grep -v -- "-ooxml" | grep -v -- "-javadoc"`;do
CP=$i:$CP
done
@@ -13,4 +13,11 @@ fi
echo Using jar $CP
-java -cp $CP org.apache.poi.hssf.dev.BiffViewer --escher "$@"
+file=$1
+echo Found extension ${file: -4}
+if [ ${file: -4} == ".doc" ]
+then
+ java -cp $CP org.apache.poi.hwpf.dev.HWPFLister "$@" --pictures --escher
+else
+ java -cp $CP org.apache.poi.hssf.dev.BiffViewer --escher "$@"
+fi