码迷,mamicode.com
首页 > 编程语言 > 详细

Python 之 subprocess模块

时间:2019-02-20 12:55:43      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:系统命令   tuple   执行   type   roc   命令执行   proc   imp   vat   

subprocess模块作用
通过此模块,可直接运行系统命令

代码

#Author Kang

import subprocess

#subprocess.getoutput命令:
#把命令运行结果传给res变量,但不能判断命令是否执行成功
res = subprocess.getoutput("ls -lh /etc")
print(res)
#结果:
lrwxr-xr-x@ 1 root  wheel    11B Sep 14  2016 /etc -> private/etc

#subprocess.getstatusoutput命令:
#把命令运行结果传给res1变量,此结果为一个元组,带有命令执行是否成功
#0为成功,非0为不成功
res1 = subprocess.getstatusoutput("ls -lh /etc")

print(res1[0])
print(res1[1])
print(res1)
#结果:
0
lrwxr-xr-x@ 1 root  wheel    11B Sep 14  2016 /etc -> private/etc
(0, ‘lrwxr-xr-x@ 1 root  wheel    11B Sep 14  2016 /etc -> private/etc‘)

res2 = subprocess.getstatusoutput("lsbb -lh /etc")
print(type(res2))
print(res2[0])
#结果:
<class ‘tuple‘>
127
/bin/sh: lsbb: command not found

Python 之 subprocess模块

标签:系统命令   tuple   执行   type   roc   命令执行   proc   imp   vat   

原文地址:http://blog.51cto.com/12965094/2352236

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!