python调用shell脚本 获取shell脚本中间的输出值 Posted 2023-04-09
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python调用shell脚本 获取shell脚本中间的输出值相关的知识,希望对你有一定的参考价值。
shell脚本形如: # test.sh #!/bin/sh echo 1 sleep 3 echo 2 sleep 3 echo 3 python程序: import os cmd = 'sh test.sh' ret = Popen(cmd, stdout=PIPE, shell=True) num = ret.stdout.read() if ret == 1: print "test 1" elif ret == 2: print "test 2" elif ret == 3: print "test 3" 结果为:num的值只有1,2和3则由shell脚本直接输出 请问:如果在shell的执行过程中,实时的得到脚本打印的值,然后将该值赋给python程序中的变量,根据变量值进行不同的处理。
参考技术A
import os ss=os.popen("sh test.sh").readlines() print ss
参考技术B
你试着用while循环来读看看,从你的代码我只看到一次读嘛。。
参考技术C
不是很会 .
python 如何调用带参数的shell脚本
调用带参数的脚本,需要首先设置,举例如下:
test.py按行解释如下:
脚本中有汉字的话,需要声明文件编码格式;
导入sys模块,这个模块是用来获取参数列表的;
sys.argv是一个列表,第一个是文件名,之后依次是参数列表;
打印输出,这一步不需要多讲;
保存到c:\\users\\YYC\\Desktop\\test.py;
调用操作步骤:
打开命令行;
输入python 文件名 第一个参数 第二个参数.....(参数之间用空格区分);
一定要注意参数个数,要以文件名开始。
参考技术A
举例:shell的脚本:t.sh内容:echo "this is a test shell with arguments"echo "arg1 = $1; arg2 = $2;"执行脚本./t.sh zhao结果如下:[noncode@gnode108 knockdown_workflow]$ ./t.sh zhao1 zhao2this is a test shell with argumentsarg1 = zhao1; arg2 = zhao2;python脚本:[noncode@gnode108 knockdown_workflow]$ cat t.py #!/usr/bin/env pythonimport osimport sysdef main():print 'Hello world!'if len(sys.argv) < 2 : print "usage:%s config log" %(sys.argv[0]) sys.exit(1)arg0 = sys.argv[0]arg1 = sys.argv[1]print "arg0 = %s; arg1 = %s" % (arg0, arg1) print "test ./t.sh: "os.system('./t.sh ' + arg0 + ' ' + arg1)print "test method of replacing: "t = 't.sh'm = 'zhao'n = 'zhao'cmd = "./%s %s %s" % (t,m,n)print "t = %s; m = %s; n = %s; cmd = %s" % (t,m,n,cmd)os.system(cmd)if __name__ == '__main__':main()运行脚本:python t.py t.sh执行结果:[noncode@gnode108 knockdown_workflow]$ python t.py t.shHello world!arg0 = t.py; arg1 = t.shtest ./t.sh: this is a test shell with argumentsarg1 = t.py; arg2 = t.sh;test method of replacing: t = t.sh; m = zhao; n = zhao; cmd = ./t.sh zhao zhaothis is a test shell with argumentsarg1 = zhao; arg2 = zhao;[noncode@gnode108 knockdown_workflow]$ cat t.sh echo "this is a test shell with arguments"echo "arg1 = $1; arg2 = $2;"[noncode@gnode108 knockdown_workflow]$ ./t.sh zhao1 zhao2this is a test shell with argumentsarg1 = zhao1; arg2 = zhao2;说明:两种方法使用python脚本调用shell脚本:第一种方法:os.system('./t.sh ' + arg0 + ' ' + arg1)注:./t.sh后面有一个空格,不同的第二种方法:t = 't.sh'm = 'zhao'n = 'zhao'cmd = "./%s %s %s" % (t,m,n)print "t = %s; m = %s; n = %s; cmd = %s" % (t,m,n,cmd)os.system(cmd)注:在之前把字符串聚合到一起。本回答被提问者采纳
以上是关于python调用shell脚本 获取shell脚本中间的输出值的主要内容,如果未能解决你的问题,请参考以下文章
python 如何调用带参数的shell脚本
shell程序中怎么获取调用参数?
shell脚本调用pyhton脚本,获取返回值
如何在shell脚本里调用另一个shell脚本
shell调用mapreduce结束后无法获取结束状态
[Shell]crontab 运行任务调用shell脚本,相对路径无法找到