码迷,mamicode.com
首页 > 其他好文 > 详细

subprocess模块

时间:2018-09-14 10:52:57      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:解释器   gre   RoCE   不执行   gbk   pipe管道   lis   err   grep   

#subprocess模块:启子进程模块 import subprocess obj=subprocess.Popen(‘tasklist‘,shell=True, #shell=True调用命令解释器来解释前面的命令,发信号并不执行 stdout=subprocess.PIPE, #PIPE管道 stderr=subprocess.PIPE, #放入报错信息 ) print(obj.stdout.read().decode(‘gbk‘)) #只能取一次值,取出格式是b格式 import subprocess obj=subprocess.Popen(‘list‘,shell=True, stdout=subprocess.PIPE, #PIPE管道 stderr=subprocess.PIPE, #放入报错信息 ) print(obj.stderr.read().decode(‘gbk‘)) #只能取一次值,取出格式是b格式 import subprocess obj=subprocess.Popen(‘ps aux |grep python‘,shell=True, stdout=subprocess.PIPE, #PIPE管道 stderr=subprocess.PIPE, #放入报错信息 ) print(obj.stdout.read()) import subprocess #同上 obj1=subprocess.Popen(‘ps aux ‘,shell=True, stdout=subprocess.PIPE, #PIPE管道 stderr=subprocess.PIPE, #放入报错信息 ) obj2=subprocess.Popen(‘grep python ‘,shell=True, stdin=obj1.stdout, stdout=subprocess.PIPE, #PIPE管道 stderr=subprocess.PIPE, #放入报错信息 ) print(obj2.stdout.read())

subprocess模块

标签:解释器   gre   RoCE   不执行   gbk   pipe管道   lis   err   grep   

原文地址:http://blog.51cto.com/13399294/2175003

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