我试着在谷歌上搜索答案,但一无所获。

我需要使用我的作品超级计算机服务器,但我的python脚本运行,它必须通过一个shell脚本执行。

例如,我希望job.sh执行python_script.py

如何才能做到这一点呢?


当前回答

这里我演示了一个在shell脚本中运行python脚本的示例。出于不同的目的,您可能需要从shell命令中读取输出,在同一个文件中执行python脚本和shell命令。

使用os.system()方法从python中执行shell命令。要从shell命令读取输出,请使用os.popen()。

下面是一个示例,它将grep所有包含文本sample_program.py的进程。然后在收集了进程id(使用python)之后,它会将它们全部杀死。

#!/usr/bin/python3
import os

# listing all matched processes and taking the output into a variable s
s = os.popen("ps aux | grep 'sample_program.py'").read()
s = '\n'.join([l for l in s.split('\n') if "grep" not in l]) # avoiding killing the grep itself
print("To be killed:")
print(s)

# now manipulating this string s and finding the process IDs and killing them
os.system("kill -9 " + ' '.join([x.split()[1] for x in s.split('\n') if x]))

引用:

在shell脚本中执行python程序 指定os的输出。系统的一个变量,并防止它显示在屏幕上

其他回答

只需确保python可执行文件在PATH环境变量中,然后添加到脚本中

python path/to/the/python_script.py

细节:

在job.sh文件中,放入以下内容

# !/ bin / sh python python_script . py

执行chmod u+x job.sh命令,使脚本可运行 运行:./job.sh

你应该能够调用它作为python scriptname.py。

# !/bin/bash

python /home/user/scriptname.py 

还要确保脚本具有运行权限。

您可以使用chmod u+x scriptname.py使其可执行。

我用这个,它工作得很好

#/bin/bash
/usr/bin/python python python_script.py

这里我演示了一个在shell脚本中运行python脚本的示例。出于不同的目的,您可能需要从shell命令中读取输出,在同一个文件中执行python脚本和shell命令。

使用os.system()方法从python中执行shell命令。要从shell命令读取输出,请使用os.popen()。

下面是一个示例,它将grep所有包含文本sample_program.py的进程。然后在收集了进程id(使用python)之后,它会将它们全部杀死。

#!/usr/bin/python3
import os

# listing all matched processes and taking the output into a variable s
s = os.popen("ps aux | grep 'sample_program.py'").read()
s = '\n'.join([l for l in s.split('\n') if "grep" not in l]) # avoiding killing the grep itself
print("To be killed:")
print(s)

# now manipulating this string s and finding the process IDs and killing them
os.system("kill -9 " + ' '.join([x.split()[1] for x in s.split('\n') if x]))

引用:

在shell脚本中执行python程序 指定os的输出。系统的一个变量,并防止它显示在屏幕上

如果您有一个bash脚本,并且需要在其中运行一个python3脚本(带有外部模块),我建议您在bash脚本中像这样指向您的python路径。

#!/usr/bin/env bash

-- bash code --

/usr/bin/python3 your_python.py

-- bash code --