I don\'t understand why it\'s so hard to do this on Windows.
I want to spawn a bunch of command prompt windows which will run other scripts. The reason I want this i
For me this seems to work os.system("cmd /k {command}")
os.system("cmd /k {command}")
With /k cmd executes and then remain open With /c executes and close
/k
/c
To open a new command window and then execute the command os.system("start cmd /k {command}")
os.system("start cmd /k {command}")