如何通过python执行shell脚本

时间:2013-04-23 22:45:50

标签: python shell subprocess popen

我有一个脚本说abc.sh,其中包含带有标志的命令列表。 示例

//abc.sh
echo $FLAG_name
cp   $FLAG_file1   $FLAG_file2
echo 'file copied'

我想通过python代码执行这个脚本。 说

//xyz.py

name = 'FUnCOder'
filename1  = 'aaa.txt'
filename2 = 'bbb.txt'

subprocess.call([abc.sh, name, filename1, filname2], stdout=PIPE, stderr=PIPE, shell=True)

此通话无效。

还有其他选择吗?

shell脚本文件也位于其他目录中。我希望输出记录在日志中。

4 个答案:

答案 0 :(得分:2)

通常你想使用Popen,因为之后你有过程控制。尝试:

process = subprocess.Popen(['abc.sh', name, filename1, filname2], stdout=PIPE, stderr=PIPE)
process.wait() # Wait for process to complete.

# iterate on the stdout line by line
for line in process.stdout.readlines():
    print(line)

答案 1 :(得分:1)

试试这个:

//xyz.py

name = 'FUnCOder'
filename1  = 'aaa.txt'
filename2 = 'bbb.txt'

process = subprocess.Popen(['abc.sh', name, filename1, filname2], stdout=PIPE)
process.wait()

请注意,'abc.sh'在引号中,因为它不是变量名,而是您正在调用的命令。

我一般会建议使用shell=False,但在某些情况下,有必要使用shell=True

要将输出放入文件,请尝试:

with open("logfile.log") as file:
    file.writelines(process.stdout)

答案 2 :(得分:1)

我知道这是一个老问题,如果您使用的是Python 3.5及更高版本,以下是方法。

import subprocess
process = subprocess.run('script.sh', shell=True, check=True, timeout=10) 

参考: https://docs.python.org/3.5/library/subprocess.html#subprocess.run

答案 3 :(得分:0)

我在 macOS 上运行我使用的 shell 脚本:

process = subprocess.Popen([abc.sh, name, filename1, filname2], shell=True)