2

我正在使用 Python 的 subprocess 模块来启动另一个程序。该程序需要一个参数“-c{0-7}”。

this_dir = os.path.dirname(os.path.abspath(__file__))
cmd = [os.path.join(this_dir,'foobar'),'-c%d' % channel]
print "Starting process: %s" % str(cmd)
Proc = subprocess.Popen(cmd,stdout=subprocess.PIPE,shell=True)

在 C++ 程序中,我正在检查传入的参数:

for (int i = 0; i < argc; i++)
{   
    cerr << i << "   " << argv[i] << endl;
}   
cerr << "" << endl;

这是我运行 python 脚本时的输出:

user@home:~/embedded_pqa/saleae$ ./foobar.py -c3
Starting process: ['/home/user/code/foobar', '-c3']
0   /home/user/code/foobar

很明显,参数“-c3”没有传递给子进程。有什么想法吗?

4

1 回答 1

12

问题在于shell=True. 引用文档

在 Unix 上,shell=True: […] 如果 args 是一个序列,第一项指定命令字符串,任何附加项将被视为 shell 本身的附加参数。

这意味着它调用以下命令:

sh -c /home/user/code/foobar -c3

shell 将其解释为命令/home/user/code/foobar和附加的 shell 参数-c3

只需摆脱,shell=True因为无论如何您都没有使用任何 sh 功能,并且您自己正在使用已经分离的参数列表。

于 2012-05-07T23:40:08.830 回答