version.sh
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. #!/bin/sh
  2. # -----------------------------------------------------------------------------
  3. # Version Script for the CATALINA Server
  4. #
  5. # $Id: version.sh 385888 2006-03-14 21:04:40Z keith $
  6. # -----------------------------------------------------------------------------
  7. # resolve links - $0 may be a softlink
  8. PRG="$0"
  9. while [ -h "$PRG" ] ; do
  10.   ls=`ls -ld "$PRG"`
  11.   link=`expr "$ls" : '.*-> (.*)$'`
  12.   if expr "$link" : '/.*' > /dev/null; then
  13.     PRG="$link"
  14.   else
  15.     PRG=`dirname "$PRG"`/"$link"
  16.   fi
  17. done
  18. PRGDIR=`dirname "$PRG"`
  19. EXECUTABLE=catalina.sh
  20. # Check that target executable exists
  21. if [ ! -x "$PRGDIR"/"$EXECUTABLE" ]; then
  22.   echo "Cannot find $PRGDIR/$EXECUTABLE"
  23.   echo "This file is needed to run this program"
  24.   exit 1
  25. fi
  26. exec "$PRGDIR"/"$EXECUTABLE" version "$@"