DEV Community

XING
XING

Posted on

2 1

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

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay