On 10/7/22, c.bu...@posteo.jp wrote:
>
> I need to improve my understanding about how subprocess.Popen() does
> quote arguments. I have special case here.
>
> Simple example:
> Popen(['ls', '-l']) results on a shell in "ls -l" without quotation.
The shell is only used if Popen is instantiated wit
On Sat, 8 Oct 2022 at 08:24, wrote:
>
> Hello,
>
> I need to improve my understanding about how subprocess.Popen() does
> quote arguments. I have special case here.
>
> Simple example:
> Popen(['ls', '-l']) results on a shell in "ls -l" without quotation.
>
> Quotes are added if they are needed:
>
Hello,
I need to improve my understanding about how subprocess.Popen() does
quote arguments. I have special case here.
Simple example:
Popen(['ls', '-l']) results on a shell in "ls -l" without quotation.
Quotes are added if they are needed:
Popen(['ls', 'folder with blank']) results on a shell i