How to open a new command line window and execute a bash command which runs in a separate independent process?
I tried
var child_process = require('child_process');
child_process.execSync("cmd.exe /K node my-new-script.js parm1 parm2);
but it opens no new window and I need an independent process (if possible). The background is I am experimenting with electron and wrote some node command line scripts. Unfortunately within electron environment spawning processes results often in weird behavior and console log output is more than ugly.
By the way I would need something equivalent to OS X and Linux.
For Windows, you'll need to use the
start
command:For OS X, you can use:
For other *nix distros, you'll need to look those up as each one is slightly different.