這裏是進程替換的玩具的例子,在Bash中正常工作:Python的子進程不允許使用shell = True進行進程替換嗎?
$ wc -l <(pwd)
1 /proc/self/fd/11
那麼,爲什麼同樣的命令給從Python的子帶外殼時調用語法錯誤=真?
>>> subprocess.check_call('wc -l <(pwd)', shell=True)
/bin/sh: 1: Syntax error: "(" unexpected
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/path/to/my/python/lib/python3.5/subprocess.py", line 581, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command 'wc -l <(pwd)' returned non-zero exit status 2
'shell = True'不使用Bash。它使用'/ bin/sh'。 (我不確定這是否可配置。) – user2357112
是的,這是問題所在。謝謝! –
另請參閱https://stackoverflow.com/questions/5725296/difference-between-sh-and-bash究竟是什麼區別。 – tripleee