[Python]执行Linux命令
Posted LeoShi2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python]执行Linux命令相关的知识,希望对你有一定的参考价值。
使用subprocess模块
import subprocess # 防火墙服务存在关闭状态 child1 = subprocess.Popen(["systemctl status firewalld | grep Active"], stdout=subprocess.PIPE, shell=True)
print(child1.communicate())
#----执行结果------
(b‘ Active: inactive (dead) ‘, None)
# samba服务不存在 child2 = subprocess.Popen(["systemctl status smbd | grep Active"], stdout=subprocess.PIPE, shell=True)
print(child2.communicate())
#----执行结果------
Unit smbd.service could not be found.
(b‘‘, None)
# network存在激活状态 child3 = subprocess.Popen(["systemctl status network | grep Active"], stdout=subprocess.PIPE, shell=True) print(child3.communicate()) #----执行结果------ (b‘ Active: active (exited) since Tue 2020-02-11 20:19:08 CST; 21h ago ‘, None)
以上是关于[Python]执行Linux命令的主要内容,如果未能解决你的问题,请参考以下文章
linux打开终端如何启动scala,如何在终端下运行Scala代码片段?
python执行linux系统命令的几种方法(python3经典编程案例)