mirror of https://github.com/apache/poi.git
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:
parent
09ffbfcdd5
commit
3b42362884
11
view.sh
11
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
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue