gpt4 book ai didi

python - subprocess.Popen() 错误(没有这样的文件或目录)调用带有参数作为字符串的命令

转载 作者:IT老高 更新时间:2023-10-28 20:59:22 24 4
gpt4 key购买 nike

我正在尝试使用 Python 函数计算文件中的行数。在当前目录中,当 os.system("ls") 找到文件时,命令 subprocess.Popen(["wc -l filename"], stdout=subprocess.PIPE) 不起作用。

这是我的代码:

>>> import os
>>> import subprocess
>>> os.system("ls")
sorted_list.dat
0
>>> p = subprocess.Popen(["wc -l sorted_list.dat"], stdout=subprocess.PIPE)File "<stdin>", line 1, in <module>
File "/Users/a200/anaconda/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/Users/a200/anaconda/lib/python2.7/subprocess.py", line 1335, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory

最佳答案

您应该将参数作为列表传递(推荐):

subprocess.Popen(["wc", "-l", "sorted_list.dat"], stdout=subprocess.PIPE)

否则,如果要使用整个"wc -l sorted_list.dat"字符串作为命令,则需要传递shell=True(不推荐,可以是安全隐患)。

subprocess.Popen("wc -l sorted_list.dat", shell=True, stdout=subprocess.PIPE)

详细了解 shell=True 安全问题 here .

关于python - subprocess.Popen() 错误(没有这样的文件或目录)调用带有参数作为字符串的命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30010939/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com