stub.bat
来自「OpenJMS是一个开源的Java Message Service API 1.」· Batch 代码 · 共 44 行
BAT
44 行
@echo offrem ---------------------------------------------------------------------------rem @COMMENT@remrem $Id: stub.bat,v 1.1 2004/11/26 02:59:09 tanderson Exp $rem ---------------------------------------------------------------------------if "%OS%" == "Windows_NT" setlocalrem Guess OPENJMS_HOME if not definedif not "%OPENJMS_HOME%" == "" goto gotHomeset OPENJMS_HOME=.if exist "%OPENJMS_HOME%\bin\openjms.bat" goto okHomeset OPENJMS_HOME=..:gotHomeif exist "%OPENJMS_HOME%\bin\openjms.bat" goto okHomeecho The OPENJMS_HOME variable is not set correctly.echo This is required to @DESCRIPTION@goto end:okHomeset EXECUTABLE=%OPENJMS_HOME%\bin\openjms.batrem Check that target executable existsif exist "%EXECUTABLE%" goto okExececho Cannot find %EXECUTABLE%echo This file is needed to @DESCRIPTION@goto end:okExecrem Get remaining unshifted command line arguments and save themset CMD_LINE_ARGS=:setArgsif ""%1""=="""" goto doneSetArgsset CMD_LINE_ARGS=%CMD_LINE_ARGS% %1shiftgoto setArgs:doneSetArgscall "%EXECUTABLE%" @ACTION@ %CMD_LINE_ARGS%:end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?