Open srele96 opened 2 years ago
Spawning command with options.shell = true uses OS native shell.
options.shell = true
Alternatively, we can specify which shell runs our command.
I had a case where I wanted to run command in PowerShell and others in cmd.
PowerShell
cmd
Which one makes sense? We can specify shell for:
We should probably be able to specify shell for each command.
However we don't want to overload user with options and choices. While making sure user has all the control he needs.
Description
Spawning command with
options.shell = true
uses OS native shell.Alternatively, we can specify which shell runs our command.
I had a case where I wanted to run command in
PowerShell
and others incmd
.Specify shell that runs command
Which one makes sense? We can specify shell for:
We should probably be able to specify shell for each command.
However we don't want to overload user with options and choices. While making sure user has all the control he needs.
Read