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

python输出shell命令执行结果

时间:2017-04-12 19:56:22      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:tput   read   port   nbsp   readline   lin   highlight   class   log   

import os,subprocess
p = subprocess.Popen("df -h", shell=True, stdout=subprocess.PIPE)
out = p.stdout.readlines()

for line in out:
    print line.strip()

  将df -h的执行结果输出到stdout,再用readlines方法读出来,再print出来

 

import os,subprocess
x = subprocess.check_output(["date", "+%T"])
print x

  这个方法可以将某个命令的结果输出到python

python输出shell命令执行结果

标签:tput   read   port   nbsp   readline   lin   highlight   class   log   

原文地址:http://www.cnblogs.com/rohero/p/6700709.html

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