loial writes:
> I need to execute an external shell script via subprocess on Linux.
>
> One of the parameters needs to be passed inside double quotes
>
> But the double quotes do not appear to be passed to the script
>
> I am using :
>
> myscript = '/home/john/myscript'
> commandline = myscript
Yep, that did the trick...cheers
On Tuesday, September 8, 2015 at 12:04:05 PM UTC+1, loial wrote:
> I need to execute an external shell script via subprocess on Linux.
>
> One of the parameters needs to be passed inside double quotes
>
> But the double quotes do not appear to be passed to the s
On Tue, Sep 8, 2015 at 9:03 PM, loial wrote:
> I need to execute an external shell script via subprocess on Linux.
>
> One of the parameters needs to be passed inside double quotes
>
> But the double quotes do not appear to be passed to the script
>
> I am using :
>
> myscript = '/home/john/myscri
On Tue, Sep 8, 2015 at 7:03 AM, loial wrote:
> I need to execute an external shell script via subprocess on Linux.
>
> One of the parameters needs to be passed inside double quotes
>
> But the double quotes do not appear to be passed to the script
>
> I am using :
>
> myscript = '/home/john/myscri
I need to execute an external shell script via subprocess on Linux.
One of the parameters needs to be passed inside double quotes
But the double quotes do not appear to be passed to the script
I am using :
myscript = '/home/john/myscript'
commandline = myscript + ' ' + '\"Hello\"'
process = s