os.system 在 Python 中使用什么 shell?

os.system 在 Python 中使用什么 shell?

在 Python 中,当我运行以下命令时

os.system

使用什么 shell?

答案1

默认情况下它将在 Bourne shell 中运行(即/bin/sh)。

os.system("/bin/bash \"echo 'Rincewind rules' \" ")使用bash并使其回应“Rincewind 规则”。

相关内容