标签:mys python class 执行 mic hello 程序 div exce
1.在shell脚本执行python脚本时,需要通过python脚本的返回值来判断后面程序要执行的命令
例:有两个py程序 hello.py
if __name__==‘__main__‘:
main()
world.py
def main():
print "Hello"
if __name__==‘__main__‘:
main()
shell 脚本 test.sh
执行sh test.sh 打印结果为
在hello.py中通过返回值 让shell脚本通过参数来判断,
hello.py这样写
def main():
try:
print "hello"
sys.exit(0)
except:
sys.exit(1)
if __name__==‘__main__‘:
main()
shell 脚本改为
就可以判断了
sh脚本中执行了python脚本,如mysh.sh文件:
python "mypy.py"
result = $?
result就是调用python执行的结果。
标签:mys python class 执行 mic hello 程序 div exce
原文地址:https://www.cnblogs.com/ExMan/p/9129791.html