DEV Community

XING
XING

Posted on

Chaining terminal commands in PowerShell

TIL, you can chain multiple commands in PowerShell through a semicolon ';'.

example, to clone a repo and do npm install and npm start :

git clone example.com/repo.git ./awesome-repo;cd ./awesome-repo;npm install;npm start

Oldest comments (0)