Rev 4688 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#! /bin/bash# This script should be placed into /usr/local/bin as 'jats'# Its function is to use the local definition of GBE_DPKG to reference the# network vesrion of JATS#if [ -z $GBE_DPKG ] ; thenecho "Error: EnvVar GBE_DPKG is not defined"exit 1fiif [ ! -d $GBE_DPKG ] ; thenecho "Error: EnvVar GBE_DPKG does not reference a directory"exit 1fiif [ ! -f $GBE_DPKG/core_devl/jats2_current/TOOLS/jats.sh ] ; thenecho "Error: JATS script not found"echo " $GBE_DPKG/core_devl/jats2_current/TOOLS/jats.sh"exit 1fiexec $GBE_DPKG/core_devl/jats2_current/TOOLS/jats.sh "$@"