I'm writing a little batch script, and i'm trying to execute two different commands in a new command window.
Now, the window opens, but i'm unable to execute the commands in sequence.
Here's the code:
:KARMA_TEST_START
ECHO.
start cmd /k gulp compileUnit && karma start
GOTO MENU
I've tried everithing mentioned here: How to run two commands in one line in Windows CMD? but with no luck.
I'd like the new window to open, execute gulp compileUnit
, after that, execute karma start and stay open (cause karma start should listen to changes and re-run every time by itself, that's why i need it to stay open).
Any help? thanks