标签:gets conf shel imp open put tput run 保存
import os
os.system(‘dir‘) #输出命令结果到屏幕,返回命令执行状态(0代表执行成功,0代表执行失败)
os.popen(‘dir‘).read() #保存命令的执行结果并输出(/n换行),无返回状态
#commands only support linux and python 2.7
commands.getstatusoutput(‘ifconfig‘)#保存命令执行状态和结果并输出
subprocess.run(["df","-h"])
subprocess.run("df -h |grep sda1",shell=True) #不需要解析命令,直接把字符串传给环境
标签:gets conf shel imp open put tput run 保存
原文地址:http://www.cnblogs.com/peiling-wu/p/7354429.html