1.2、需要交给Linux shell自己解析,则:传入命令字符串,shell=True
>>> res = subprocess.run("cd",shell=True,stdout=subprocess.PIPE)
>>> res.stdout
b'C:\\Users\\wangwuhui\\Desktop\r\n'
2、subprocess.call()
相当于os.system()
3、subprocess.check_call()
执行命令,返回结果和状态,正常为0 ,执行错误则抛出异常
4、subprocess.getstatusoutput()
接受字符串形式的命令,返回 一个元组形式的结果,第一个元素是命令执行状态,第二个为执行结果
>>> result = subprocess.getstatusoutput("pwd")
>>> result
(0, '/root')
4.2、执行错误
>>> result = subprocess.getstatusoutput("pwdd")
>>> result
(127, '/bin/sh: pwdd: command not found')
5、subprocess.getoutput()
接受字符串形式的命令,返回执行结果
5.1、执行命令正常
>>> result = subprocess.getoutput("pwd")
>>> result
'/root'
5.2、执行命令出错
>>> result = subprocess.getoutput("pwdd")
>>> result
'/bin/sh: pwdd: command not found'
6、subprocess.check_output()
7、subprocess.Popen()
其实前面subprocess使用的方法,都是对subprocess.Popen的封装,下面我们就来看看这个Popen方法。
7.1、stdout
>>> res
=
subprocess.Popen(
"ls /tmp/yum.log"
, shell
=
True
, stdout
=
subprocess.PIPE)
>>> res.stdout.read()
b
'/tmp/yum.log\n'
res.stdout.close()
7.2、stderr
>>>
import
subprocess
>>> res
=
subprocess.Popen(
"lm -l"
,shell
=
True
,stdout
=
subprocess.PIPE,stderr
=
subprocess.PIPE)
>>> res.stdout.read()
>>> res.stderr.read()
b
'/bin/sh: lm: command not found\n'
注意:上面的提到的标准输出都为啥都需要等于subprocess.PIPE,这个又是啥呢?原来这个是一个管道,这个需要画一个图来解释一下
7.3、poll()
定时检查命令有没有执行完毕,执行完毕后返回执行结果的状态,没有执行完毕返回None
>>> res = subprocess.Popen("sleep 10;echo 'hello'",shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
>>> print(res.poll())
>>> print(res.poll())
>>> print(res.poll())
7.4、wait()
等待命令执行完成,并且返回结果状态
>>> obj = subprocess.Popen("sleep 10;echo 'hello'",shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
>>> obj.wait()
# 中间会一直等待
7.5、terminate()
import
subprocess
>>> res
=
subprocess.Popen(
"sleep 20;echo 'hello'"
,shell
=
True
,stdout
=
subprocess.PIPE,stderr
=
subprocess.PIPE)
>>> res.terminate()
>>> res.stdout.read()
7.6、pid
获取当前执行子shell的程序的进程号
import
subprocess
>>> res
=
subprocess.Popen(
"sleep 5;echo 'hello'"
,shell
=
True
,stdout
=
subprocess.PIPE,stderr
=
subprocess.PIPE)
>>> res.pid
7.7、communicate
该方法可用来与进程进行交互,比如发送数据到stdin,从stdout和stderr读取数据,直到到达文件末尾。
例子1:子进程中使用录屏软件。
#coding:utf-8
import time
import os
import datetime
import subprocess
def live_video():
file_name = datetime.datetime.now().strftime('%Y-%m-%d-%H-%M-%S.mp4')
# 开启录屏
live_video = subprocess.Popen('ffmpeg -f gdigrab -i desktop -vcodec libx264 -pix_fmt yuv420p {} -y'.format(file_name),shell=True,stdin=subprocess.PIPE,stdout=subprocess.PIPE)
time.sleep(10) # 录制10秒
live_video.stdin.write('q'.encode("GBK")) # 发送命令,停止录屏
live_video.communicate() # 发送数据到标准输入
live_video()
例子2:子进程中使用Python
print("***Popen对象stdin写入功能:使用communicate输出")
p4 = subprocess.Popen(["python"], stdout=subprocess.PIPE,
stdin=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
p4.stdin.write("print('hello')")
output = p4.communicate()
print(output) # 结果:('hello\n', '')
例子3:子进程中切换账户
p4 = subprocess.Popen("/opt/work/plsh/plsh",stdout=subprocess.PIPE,stdin=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True,shell=True)
p4.stdin.write("test\n") # 输入用户名
p4.stdin.write("lalala.test\n") # 输入密码
p4.stdin.write("show capture\n") #切换账户后,执行命令
output = p4.communicate()[0]