0514-86177077
9:00-17:00(工作日)
1.在shell脚本执行python脚本时,需要通过python脚本的返回值来判断后面程序要执行的命令
例:有两个py程序 hello.py
if __name__=='__main__': main() world.py
def main(): print "Hello"
if __name__=='__main__': main()
hello.py这样写
def main(): try: print "hello" sys.exit(0) except: sys.exit(1)
shell 脚本改为
标签:南充 随州 通辽 西藏 青岛 延边 雅安 朝阳
上一篇:shell脚本实现拷贝大文件显示百分比的代码分享
下一篇:linux系统中的列出敏感用户的脚本代码