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
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
For further actions, you may consider blocking this person and/or reporting abuse
John Serrano (jandrey15) -
Mohammad Maleki -
Subhankar Poddar -
Subhankar Poddar -
Top comments (0)