python执行shell命令

python执行shell命令1.不需要获取命令执行结果os.system(command)#-*-coding:utf-8-*-importoscommand=’adbdevices’tt=os.system(command)print(tt)print(type(tt))输出结果为:0<class’int’>2.需要获取命令执行结果tt=os.popen(command)#-*-coding:utf-8-*-importoscommand=’adbdevic

1.不需要获取命令执行结果

os.system(command)

# -*- coding:utf-8 -*-
import os
command='adb devices'
tt=os.system(command)
print(tt)
print(type(tt))

输出结果为:

0
<class 'int'>

2.需要获取命令执行结果

tt=os.popen(command)

# -*- coding:utf-8 -*-
import os
command='adb devices'
tt=os.popen(command)
print(tt)
print(type(tt))
tmp=tt.read()
print(tmp)

输出结果为:

<os._wrap_close object at 0x000001F1B0607248>
<class 'os._wrap_close'>
List of devices attached
CVH7N16A12000234        device

总结:
python调用Shell脚本或者是调用系统命令,有两种方法:
1.os.system(cmd)
2.os.popen(cmd)
前者返回值是命令执行后的退出状态码,正常为0,异常为1
后者的返回值是脚本执行过程中的输出内容。

3.subprocess获取执行结果

st = subprocess.Popen('pwd', stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True).stdout.readline()
print(bytes.decode(st))
# /usr1

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/34482.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注