Eclipse Help 的 start stop 脚本

想单独使用Eclipse的Help。写了这个脚本。

呵呵,不太会用bat 语法。
=============================================
@ECHO OFF
REM "zcx eclipse help script"


set ehome="f:\eclipse"
pushd %ehome%
if "%1" == "start" (
explorer http://localhost/help/index.jsp)
start javaw -classpath plugins\org.eclipse.help.base_3.3.101.M20080728_34x.jar org.eclipse.help.standalone.Infocenter -eclipse home . -port 80 -command start
)

if "%1" == "stop" (
start javaw -classpath plugins\org.eclipse.help.base_3.3.101.M20080728_34x.jar org.eclipse.help.standalone.Infocenter -eclipse home . -port 80 -command shutdown
)
popd
===============================================

你可能感兴趣的:(eclipse,jsp,脚本,F#)