You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ha...@hyperreal.org on 1999/11/29 00:53:59 UTC

cvs commit: jakarta-tomcat/src/shell tomcat.bat

harishp     99/11/28 15:53:59

  Modified:    src/shell tomcat.bat
  Log:
  Changed -start/-stop arguments of tomcat.bat to start/stop.
  
  Revision  Changes    Path
  1.2       +4 -4      jakarta-tomcat/src/shell/tomcat.bat
  
  Index: tomcat.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/shell/tomcat.bat,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- tomcat.bat	1999/11/25 20:42:20	1.1
  +++ tomcat.bat	1999/11/28 23:53:58	1.2
  @@ -1,5 +1,5 @@
   @echo off
  -rem $Id: tomcat.bat,v 1.1 1999/11/25 20:42:20 harishp Exp $
  +rem $Id: tomcat.bat,v 1.2 1999/11/28 23:53:58 harishp Exp $
   rem A batch file to start/stop tomcat server.
   
   rem This batch file written and tested under Windows NT
  @@ -23,11 +23,11 @@
   set CLASSPATH=%CLASSPATH%;%cp% 
    
   :next
  -if "%1" == "-start" goto startServer
  -if "%1" == "-stop" goto stopServer
  +if "%1" == "start" goto startServer
  +if "%1" == "stop" goto stopServer
   @echo on
   @echo Usage:
  -@echo tomcat [-start|-stop]
  +@echo tomcat [start|stop]
   @echo off
   goto cleanup