gpt4 book ai didi

python - os.system(cmd) 与终端中的 cmd 不同

转载 作者:行者123 更新时间:2023-12-04 18:57:59 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Process substitution not allowed by Python's subprocess with shell=True?

(3 个回答)


去年关闭。




为什么这段代码在终端(Ubuntu 12.04)运行成功:

python -c "print 123" > >(tee stdout.txt)

但是python(2.7.5)中的这段代码:
import os
os.system('python -c "print 123" > >(tee stdout.txt)') # same command

产生这个错误?
sh: -c: line 0: syntax error near unexpected token `>'
sh: -c: line 0: `python -c "print 123" > >(tee stdout.txt)'

最佳答案

os.system调用 sh , 不支持 bash 的 >(process substitution) .

出于兼容性原因,即使 shbash 提供.

相反,显式运行 bash:

import subprocess
subprocess.call(["bash", "-c", 'python -c "print 123" > >(tee stdout.txt)'])

关于python - os.system(cmd) 与终端中的 cmd 不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29304867/

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