memcache win32 的批處理

@echo off
@title memcahce 管理
E:
cd E:\memcached\memcached-1.2.6-win32-bin

:init

set /p var=輸入 i 啓動  r 重啓  t中止
if %var% == i goto start
if %var% == r goto restart
if %var% == t goto stop
goto end

:start
echo memcache 啓動開始
memcached.exe -d start
echo memcache 啓動完畢
goto end

:restart
echo memcache 重啓開始
memcached.exe -d restart
echo memcache 重啓完畢
goto end

:stop
echo memcache 中止開始
memcached.exe -d stop
echo memcache 中止完畢
goto end


:end 
set /p var=運行完畢是否退出?[y,n]
if %var% == n goto init
相關文章
相關標籤/搜索