I want to run two commands in a Windows CMD console.
In Linux I would do it like this
touch thisfile ; ls -lstrh
How is it done on
One more example: For example, when we use the gulp build system, instead of
gulp
gulp - default > build
gulp build - build build-folder
gulp build
gulp watch - start file-watch
gulp watch
gulp dist - build dist-folder
gulp dist
We can do that with one line:
cd c:\xampp\htdocs\project & gulp & gulp watch