tlappend.bat
来自「cms是开源的框架」· Batch 代码 · 共 18 行
BAT
18 行
rem ---------------------------------------------------------------------------
rem Append to TOMCAT_LIB
rem ---------------------------------------------------------------------------
rem Process the first argument
if ""%1"" == """" goto end
set TOMCAT_LIB=%TOMCAT_LIB%;%1
shift
rem Process the remaining arguments
:setArgs
if ""%1"" == """" goto doneSetArgs
set TOMCAT_LIB=%TOMCAT_LIB% %1
shift
goto setArgs
:doneSetArgs
:end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?