I created a bat file that allows me to do more quickly. When I run a command (5), he remains open with ""Press any key to continue . . . ", while if I do the command (6), it closes automatically...
@ECHO OFF
CLS
ECHO 5.Show Router
ECHO 6.Run SASS
ECHO.
CHOICE /C 56 /M "Select:"
:: Note - list ERRORLEVELS in decreasing order
IF ERRORLEVEL 6 GOTO GulpSass
IF ERRORLEVEL 5 GOTO ShowRouter
:ShowRouter
@echo off
title Show Router
cd c:\xampp\htdocs\laravel
php artisan route:list
@pause
GOTO
:GulpSass
@echo off
title Codifico SASS
cd c:\xampp\htdocs\laravel
npm run dev
@pause
GOTO
:End
Because in gulpsass, if I did @pause, does it close the window while ShowRouter no?