The docs for the subprocess module state that 'If shell is True, the specified command will be executed through the shell'. What does this mean in practice, on a Windows OS?
|
|
|
|
|
|
|
When you execute an external process, the command you want may look something like "foo arg1 arg2 arg3". If "foo" is an executable, that is what gets executed and given the arguments. However, often it is the case that "foo" is actually a script of some sort, or maybe a command that is built-in to the shell and not an actual executable file on disk. In this case the system can't execute "foo" directly because, strictly speaking, these sorts of things aren't executable. They need some sort of "shell" to execute them. On *nix systems this shell is typically (but not necessarily) /bin/sh. On windows it will typically be cmd.exe (or whatever is stored in the COMSPEC environment variable). This parameter lets you define what shell you wish to use to execute your command, for the relatively rare case when you don't want the default. |
||
|
|
|
|
In addition to what was said in other answers, it is useful in practice if you want to open a file in the default viewer for that file type. For instance, if you want to open an HTML or PDF file, but will not know which browser or viewer is installed on the systems it will be run on, or have no guarantees as to the path to the executable, you can simply pass the file name as the only argument for the args field, then set shell=True. This will have Windows use whatever program is associated with that file type. One caveat, if the path to your file has spaces, you need to surround it with two ". eg.
|
||||||
|
|
|
In using-the-subprocess-module, there is an explicit paragraph:
Windows example - the shell (
Using a shell, all is well:
|
|||
|
|
|
It means that the command will be executed using the program specified in the To be exact, subprocess calls the If shell==False, the |
|||
|
|
