📄 stub.bat
字号:
@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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -