
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@5 f0f2a975-2e09-46c8-9428-3b39399b9f3c
22 lines
No EOL
719 B
Text
22 lines
No EOL
719 B
Text
# *Very* simple script to run Writer2LaTeX (unix version)
|
|
# Created by Henrik Just, october 2003
|
|
# Modified december 2003 as suggested by Juan Julian Merelo Guervos
|
|
# Modified may 2004 as suggested by J. Wolfgang Kaltz
|
|
# Last modified december 2008
|
|
|
|
# If writer2latex.jar is not in the same directory as the script, please
|
|
# edit the following line to contain the full path to Writer2LaTeX:
|
|
W2LPATH=`dirname $0`
|
|
|
|
# If the required JVM is not in your path, or the path is not set by JAVA_HOME,
|
|
# please edit the following line to contain the full path and file name
|
|
MYJAVAEXE="java"
|
|
|
|
if [ "$JAVA_HOME" = "" ]
|
|
then
|
|
JAVAEXE="$MYJAVAEXE"
|
|
else
|
|
JAVAEXE="$JAVA_HOME/bin/java"
|
|
fi
|
|
|
|
$JAVAEXE -jar "$W2LPATH/writer2latex.jar" "$@" |