我有一个shell脚本(myshell.sh),在这个shell中,我运行了一个python脚本(mypython.py)。如何将python变量传递给shell脚本?我只是在python脚本的末尾打印了变量,然后在shell脚本中使用以下命令来运行python脚本:
a=$(python mypython.py arg1 arg2 arg3)
但是,$ a和我的变量有很多垃圾信息。运行python脚本后,如何在shell脚本中仅包含python变量? 我的python脚本看起来像:
print("hi")
print("bye")
a="goodbye"
print(a)
我想在一个内部shell脚本中获取变量。