用python中的变量参数调用linux命令

时间:2015-09-25 08:57:43

标签: python command-line command

我正在尝试从python2x执行一个程序。

在终端中,作业将以:

运行
mpirun -np 8 ~/WORK/scf Fe_SCF.inp > Fe_SCF.out

Fe_SCF.*中输入和输出CWD的位置。

现在,我正在尝试从python脚本运行这个部分。因为,我已将它们定义为变量,并试图将其称为:

call(["mpirun -np 8 ~/WORK/scf", scfin,  scfout])

给出错误:

  File "./triolith.py", line 38, in <module>
        call(["mpirun -np 8 ~/WORK/scf", scfin,  scfout])
      File "/usr/lib64/python2.7/subprocess.py", line 522, in call
        return Popen(*popenargs, **kwargs).wait()
      File "/usr/lib64/python2.7/subprocess.py", line 710, in __init__
        errread, errwrite)
      File "/usr/lib64/python2.7/subprocess.py", line 1335, in _execute_child
        raise child_exception
    OSError: [Errno 2] No such file or directory

使用真实文件名也无法解决问题:

 call(["mpirun -np 8 ~/WORK/scf", "Fe_SCF.inp",  "Fe_SCF.out"])

哪个出错:

File "./triolith.py", line 38, in <module>
    call(["mpirun -np 8 ~/WORK/scf", "Fe_SCF.inp",  "Fe_SCF.out"])
  File "/usr/lib64/python2.7/subprocess.py", line 522, in call
    return Popen(*popenargs, **kwargs).wait()
  File "/usr/lib64/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)
  File "/usr/lib64/python2.7/subprocess.py", line 1335, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

我已经检查并确认,使用os.system正在使用“Real”文件名,但不能使用变量名称:

 os.system("mpirun -np 8 ~/WORK/scf scfin" )

因此,使用两种方法中的任何一种,如何使用变量名作为输入和输出来调用程序?

2 个答案:

答案 0 :(得分:2)

调用需要一个列表,因此你的第一个例子应该是:

cmd = ['/absolute/path/to/mpirun', '-np', '8', '~WORK/scf', var_1]
call(cmd, stdout=var_2, stderr=STDOUT)

答案 1 :(得分:1)

在后一个使用OS模块的示例中,您应该能够:

os.system("mpirun -np 8 ~/WORK/scf "+ var_name)

运行函数调用。

对于多个变量,d o:

os.system("mpirun -np 8 ~WORK/scf " + var_1 + " " + var_2)