Reputation: 2143
I have a file npm_version.cmd that does not pause and instead closes the window:
npm -v
@pause
I have a similar file nodejs_version.cmd that does pause and keeps the window open:
node -v
@pause
It seems npm is changing the window to npm and then back to cmd or something.
Any idea how to force this to pause?
Upvotes: 3
Views: 1973