This temp directory is used by the JVM for temporary file storage. The JVM is configured to use thi

源代码在线查看: tool-wrapper-using-launcher.sh

软件大小: 2917 K
上传用户: rylzll
关键词: configured JVM directory temporary
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/bin/sh
				
				# -----------------------------------------------------------------------------
				#
				# Script for running the Catalina tool wrapper using the Launcher
				#
				# -----------------------------------------------------------------------------
				
				# Resolve links - $0 may be a softlink
				PRG="$0"
				
				while [ -h "$PRG" ]; do
				  ls=`ls -ld "$PRG"`
				  link=`expr "$ls" : '.*-> \(.*\)$'`
				  if expr "$link" : '.*/.*' > /dev/null; then
				    PRG="$link"
				  else
				    PRG=`dirname "$PRG"`/"$link"
				  fi
				done
				
				# Get standard environment variables
				PRGDIR=`dirname "$PRG"`
				if [ -r "$PRGDIR"/setenv.sh ]; then
				  . "$PRGDIR"/setenv.sh
				fi
				
				# Execute the Launcher using the "tool-wrapper" target
				exec "$JAVA_HOME"/bin/java -classpath "$PRGDIR" LauncherBootstrap -launchfile catalina.xml -verbose tool-wrapper "$@"
							

相关资源