python原样输出linux信息
Posted 坚强的小蚂蚁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python原样输出linux信息相关的知识,希望对你有一定的参考价值。
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import subprocess
# 与在命令窗口执行显示效果相同,如有彩色输出可保留,但不能返回结果
def run(command):
subprocess.call(command, shell=True)
# 实时输出但不可显示彩色,可以返回结果
def sh(command, print_msg=True):
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
lines = []
for line in iter(p.stdout.readline, b\'\'):
line = line.rstrip().decode(\'utf8\')
if print_msg:
print(">>>", line)
lines.append(line)
return lines
print(\'run():\')
run("ping www.baidu.com")
print(\'\\n\\nsh():\')
sh("ping www.baidu.com")
以上是关于python原样输出linux信息的主要内容,如果未能解决你的问题,请参考以下文章