gpt4 book ai didi

python - 将python脚本的返回值捕获到shell脚本中

转载 作者:太空宇宙 更新时间:2023-11-04 07:02:36 24 4
gpt4 key购买 nike

我有一个 shell 脚本,我在其中调用一个 python 脚本说 new.py:

#!/usr/bin/ksh

python new.py

现在这个 new.py 类似于 -

if not os.path.exists('/tmp/filename'):
print "file does not exist"
sys.exit(0)

如果文件没有退出,则 python 脚本返回,但 shell 脚本继续执行。如果文件不退出并且我的 python 脚本退出,我希望 shell 脚本也停止在该点。

请建议我如何在 shell 脚本中捕获返回以进一步停止其执行。

最佳答案

您需要从退出函数返回零以外的值。

if os.path.exists("/tmp/filename"):
sys.exit(0)
else:
sys.exit(1)

错误值只有 8 位,所以只有整数的低 8 位返回给 shell。如果您提供负数,将返回二进制补码表示的低 8 位,这可能不是您想要的。您通常不会返回负数。

关于python - 将python脚本的返回值捕获到shell脚本中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14850555/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com