@echo off if "%1"=="" goto caseStart if "%1"=="start" goto caseStart if "%1"=="stop" goto caseStop goto caseUsage :caseStart echo ###################### echo "Arrancando Servicios" echo ###################### echo. call "%0" stop call forever start forever.json call forever list call nginx -c conf-dev.conf call cd @salix call gulp goto salir :caseStop echo ###################### echo "Parando Servicios" echo ###################### echo. call forever stopall call forever list call nginx -c conf-dev.conf -p @salix -s stop goto salir :caseUsage echo "Usage: %0 [start|stop]" :salir