没用过python,所以仍在学习中.基本上,我有一个与特定工作相关的ID列表.目前,我只希望能够传递列表中的第一个ID(使用a [0])并将请求的输出打印到hello.txt.因此,整个命令本身看起来像bjobs -l 000001> hello.txt.完成此操作后,就可以遍历整个ID文件,为每个命令输出创建一个单独的文件.
#! /usr/bin/python
import subprocess
a = [ln.rstrip() for ln in open('file1')]
subprocess.call(["bjobs -l ", a[0], "> hello.txt"], shell=True)
任何帮助,将不胜感激!如果我在某些事情上不清楚,请询问,我会尽力解释.
解决方法:
如果只需要第一个ID,请执行以下操作:
with open('file1') as f:
first_id = next(f).strip()
with语句将打开文件并确保将其关闭.
然后,您可以使用以下内容获取bjobs输出:
output = subprocess.check_output(["bjobs", "-l", first_id], shell=True)
和写:
with open('hello.txt', 'wb') as f:
f.write(output)
我建议将bjobs输出的获取和写入分开,因为您可能想对它进行某些操作,或者您可能会用Python编写bjobs,所以…那么这会使事情分开.
如果要循环所有id,可以执行以下操作:
with open('file1') as f:
for line in f:
line = line.strip()
# ...
如果需要行号,则使用enumerate
:
with open('file1') as f:
for i, line in enumerate(f):
line = line.strip()
# ...
我知道我比您的要求提前了一步,但是似乎您已经开始构建一些东西,因此我认为这可能很有用.