I need to run two commands which never terminate. What I normally do is to
- start a
cmdterminal and type in the first command - start another
cmdterminal and type in the second command
I then have my two processes running in parallel.
I now would like to automate this by having one "startup" file which would lauch the two terminals above. It can be cmd or PowerShell based.
Note 1: I tried to use cmd with /k or /c but this does not spawn a new terminal. Trying something like cmd /c cmd ended up with Internal Error output in the shell.
Note 2: PowerShell has Background Jobs. The problem is that I want to have two separate shells I can monitor the output on (and eventually close the running process with Ctrl-C.
Is there a way to achieve this in one file?