简体   繁体   中英

How to pass a value to shell script from subprocess.Popen in Python

I have the following:

myscript.py

#!/usr/bin/python
from threading import Thread
import time
import subprocess

subprocess.Popen("./hello.sh 1", shell=True)
subprocess.Popen("./hello.sh 2", shell=True)
subprocess.Popen("./hello.sh 3", shell=True)

hello.sh

echo "Hello From Shell Script $1"

The output is:

Hello From Shell Script 1
Hello From Shell Script 2
Hello From Shell Script 3

I want to do this in a for loop like so:

for num in range(1,3):
    subprocess.Popen(['./hello.sh', str(num)], shell=True)

But the output is:

Hello From Shell Script
Hello From Shell Script
Hello From Shell Script

If I drop the shell=True so its now:

subprocess.Popen(['./hello.sh', str(num)])

I get the following:

Traceback (most recent call last):
  File "./myscript.py", line 12, in <module>
    subprocess.Popen(['./hello.sh', str(num)])
  File "/usr/lib64/python2.6/subprocess.py", line 623, in __init__
    errread, errwrite)
  File "/usr/lib64/python2.6/subprocess.py", line 1141, in _execute_child
    raise child_exception
OSError: [Errno 8] Exec format error

How can I get this to pass in the correct value to the script?

Change it to read as follows:

>>> for num in range(1,3):
...     subprocess.Popen(['./hello.sh '+str(num)], shell=True)

如果要传递列表而不是字符串作为第一个参数,请不要使用shell=True

subprocess.Popen(['./hello.sh', str(num)])

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM