📄 install.bat
字号:
@echo off
if ""%CATALINA_HOME%""=="""" goto no_tomcat
echo Coping the war file to webapps
copy install_folder\remote.war %CATALINA_HOME%\webapps
if not exist %CATALINA_HOME%\webapps\remote_temp\WEB-INF\web.xml goto make_temp
if not exist user.xml goto make_xml
:make_temp
mkdir %CATALINA_HOME%\webapps\remote_temp
mkdir %CATALINA_HOME%\webapps\remote_temp\WEB-INF
copy install_folder\web.xml %CATALINA_HOME%\webapps\remote_temp\WEB-INF
if not exist user.xml goto make_xml
goto exit
:make_xml
copy install_folder\user_sample.xml user.xml
goto exit
:no_tomcat
echo TOMCAT_HOME variable is not set
:exit
echo Installation Completed
pause
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -