source: nutchez-0.1/tomcat/bin/tool-wrapper.bat @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 3.1 KB
Line 
1@echo off
2rem Licensed to the Apache Software Foundation (ASF) under one or more
3rem contributor license agreements.  See the NOTICE file distributed with
4rem this work for additional information regarding copyright ownership.
5rem The ASF licenses this file to You under the Apache License, Version 2.0
6rem (the "License"); you may not use this file except in compliance with
7rem the License.  You may obtain a copy of the License at
8rem
9rem     http://www.apache.org/licenses/LICENSE-2.0
10rem
11rem Unless required by applicable law or agreed to in writing, software
12rem distributed under the License is distributed on an "AS IS" BASIS,
13rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14rem See the License for the specific language governing permissions and
15rem limitations under the License.
16
17if "%OS%" == "Windows_NT" setlocal
18rem ---------------------------------------------------------------------------
19rem Wrapper script for command line tools
20rem
21rem Environment Variable Prequisites
22rem
23rem   CATALINA_HOME May point at your Catalina "build" directory.
24rem
25rem   TOOL_OPTS     (Optional) Java runtime options used when the "start",
26rem                 "stop", or "run" command is executed.
27rem
28rem   JAVA_HOME     Must point at your Java Development Kit installation.
29rem
30rem   JAVA_OPTS     (Optional) Java runtime options used when the "start",
31rem                 "stop", or "run" command is executed.
32rem
33rem $Id: tool-wrapper.bat 562770 2007-08-04 22:13:58Z markt $
34rem ---------------------------------------------------------------------------
35
36rem Guess CATALINA_HOME if not defined
37if not "%CATALINA_HOME%" == "" goto gotHome
38set CATALINA_HOME=.
39if exist "%CATALINA_HOME%\bin\tool-wrapper.bat" goto okHome
40set CATALINA_HOME=..
41:gotHome
42if exist "%CATALINA_HOME%\bin\tool-wrapper.bat" goto okHome
43echo The CATALINA_HOME environment variable is not defined correctly
44echo This environment variable is needed to run this program
45goto end
46:okHome
47
48rem Get standard environment variables
49if exist "%CATALINA_HOME%\bin\setenv.bat" call "%CATALINA_HOME%\bin\setenv.bat"
50
51rem Get standard Java environment variables
52if exist "%CATALINA_HOME%\bin\setclasspath.bat" goto okSetclasspath
53echo Cannot find %CATALINA_HOME%\bin\setclasspath.bat
54echo This file is needed to run this program
55goto end
56:okSetclasspath
57set BASEDIR=%CATALINA_HOME%
58call "%CATALINA_HOME%\bin\setclasspath.bat"
59
60rem Add on extra jar files to CLASSPATH
61if "%CLASSPATH%" == "" goto noclasspath
62set CLASSPATH=%CLASSPATH%;%CATALINA_HOME%\bin\bootstrap.jar;"%BASEDIR%"\lib\servlet-api.jar
63goto :okclasspath
64:noclasspath
65set CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar;"%BASEDIR%"\lib\servlet-api.jar
66:okclasspath
67
68rem Get remaining unshifted command line arguments and save them in the
69set CMD_LINE_ARGS=
70:setArgs
71if ""%1""=="""" goto doneSetArgs
72set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
73shift
74goto setArgs
75:doneSetArgs
76
77%_RUNJAVA% %JAVA_OPTS% %TOOL_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.home="%CATALINA_HOME%" org.apache.catalina.startup.Tool %CMD_LINE_ARGS%
78
79:end
Note: See TracBrowser for help on using the repository browser.