我想知道是否
subprocess.call("if [ ! -d '{output}' ]; then mkdir -p {output}; fi", shell=True)
在不同的服务器中将被解释为
sh
或 zsh
而不是 bash
。
我应该怎么做才能确保它被
bash
解释?
http://docs.python.org/2/library/subprocess.html
On Unix with shell=True, the shell defaults to /bin/sh
请注意 /bin/sh 通常符号链接到不同的东西,例如在 ubuntu 上:
$ ls -la /bin/sh
lrwxrwxrwx 1 root root 4 Mar 29 2012 /bin/sh -> dash
您可以使用
executable
参数来替换默认值:
...如果 shell=True,则开启 Unix 可执行参数指定一个替换 shell 默认/bin/sh。
subprocess.call("if [ ! -d '{output}' ]; then mkdir -p {output}; fi",
shell=True,
executable="/bin/bash")
要指定 shell,使用可执行参数 和
shell=True
:
如果 shell=True,在 Unix 上可执行参数指定一个 默认 /bin/sh 的替换 shell。
In [26]: subprocess.call("if [ ! -d '{output}' ]; then mkdir -p {output}; fi", shell=True, executable='/bin/bash')
Out[26]: 0
显然,使用可执行参数更干净,但也可以从 sh 调用 bash:
In [27]: subprocess.call('''bash -c "if [ ! -d '{output}' ]; then mkdir -p {output}; fi"''', shell=True)
Out[27]: 0
您可以显式调用您选择的 shell,但对于您发布的示例代码,这不是最好的方法。 相反,直接用 Python 编写代码即可。 请参阅此处:mkdir -p Python 中的功能