version.sh
上传用户:zhangkaihu
上传日期:2008-02-20
资源大小:3690k
文件大小:1k
源码类别:

Web服务器

开发平台:

Java

  1. #!/bin/sh
  2. # -----------------------------------------------------------------------------
  3. # Version Script for the CATALINA Server
  4. #
  5. # $Id: version.sh,v 1.1 2004/06/30 15:25:31 funkman Exp $
  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 "$@"