Enhance view.sh for HWPF/doc files

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773642 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2016-12-11 20:58:42 +00:00
parent d86f19ffde
commit 5e476cd95e
1 changed files with 10 additions and 3 deletions

13
view.sh
View File

@ -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