store return value of a Python script in a bash script(将 Python 脚本的返回值存储在 bash 脚本中)
问题描述
我想从 bash 脚本执行 python 脚本,并且我想将 python 脚本的输出存储在一个变量中.
I want to execute a python script from a bash script, and I want to store the output of the python script in a variable.
在我的 python 脚本中,我将一些内容打印到屏幕上,最后我返回一个字符串:
In my python script, I print some stuff to screen and at the end I return a string with:
sys.exit(myString)
在我的 bash 脚本中,我执行了以下操作:
In my bash script, I did the following:
outputString=`python myPythonScript arg1 arg2 arg3 `
但是当我使用 echo $outputString 检查 outputString 的值时,我得到了 Python 脚本打印到屏幕上的所有内容,但 不是 返回值myString!
But then when I check the value of outputString with echo $outputString I get everything that the Python script had printed to screen, but not the return value myString!
我应该怎么做?
我需要该字符串,因为它告诉我 Python 脚本创建的文件所在的位置.我想做类似的事情:
I need the string because that tells me where a file created by the Python script is located. I want to do something like:
fileLocation=`python myPythonScript1 arg1 arg2 arg1`
python myPythonScript2 $fileLocation
推荐答案
sys.exit(myString) 并不意味着返回这个字符串".如果您将字符串传递给 sys.exit, sys.exit 会将该字符串视为错误消息,并将该字符串写入 stderr.与整个程序的返回值最接近的概念是它的退出状态,它必须是一个整数.
sys.exit(myString) doesn't mean "return this string". If you pass a string to sys.exit, sys.exit will consider that string to be an error message, and it will write that string to stderr. The closest concept to a return value for an entire program is its exit status, which must be an integer.
如果您想捕获写入 stderr 的输出,您可以执行类似的操作一个>
If you want to capture output written to stderr, you can do something like
python yourscript 2> return_file
你可以在你的 bash 脚本中做类似的事情
You could do something like that in your bash script
output=$((your command here) 2> &1)
但不能保证只捕获传递给 sys.exit 的值.写入 stderr 的任何其他内容也将被捕获,其中可能包括日志输出或堆栈跟踪.
This is not guaranteed to capture only the value passed to sys.exit, though. Anything else written to stderr will also be captured, which might include logging output or stack traces.
示例:
test.py
print "something"
exit('ohoh')
t.sh
va=$(python test.py 2>&1)
mkdir $va
bash t.sh
编辑
不知道为什么,但在这种情况下,我会编写一个主脚本和两个其他脚本...混合 python 和 bash 是没有意义的,除非你真的需要.
Not sure why but in that case, I would write a main script and two other scripts... Mixing python and bash is pointless unless you really need to.
import script1
import script2
if __name__ == '__main__':
filename = script1.run(sys.args)
script2.run(filename)
这篇关于将 Python 脚本的返回值存储在 bash 脚本中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 Python 脚本的返回值存储在 bash 脚本中
基础教程推荐
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 求两个直方图的卷积 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 包装空间模型 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
