1. os.system

In [32]: run = os.system("date")
Thu Jan 28 09:41:25 CST 2016
In [33]: run
Out[33]: 0

只能得到返回值,无法得到输出。

2. os.popen

In [35]: run = os.popen("date")
In [36]: run.read
Out[36]: <function read>
In [37]: run.read()
Out[37]: 'Thu Jan 28 09:43:14 CST 2016\n'

只能得到输出,无法得到返回值。

3. commands模块

In [39]: run = commands.getstatusoutput("date")
In [40]: run
Out[40]: (0, 'Thu Jan 28 09:44:44 CST 2016')

返回一个数组。

4. subprocess模块

4.1 call

In [42]: run = subprocess.call(["uname","-a"], shell=True)
Linux
In [43]: run
Out[43]: 0

直接输出结果,将返回值赋值给变量,类似os.system

4.2 Popen

In [44]: run = subprocess.Popen("uname -a", shell=True,stdout=subprocess.PIPE)
In [48]: run.stdout.read()
Out[48]: 'Linux test-sun207 3.10.0-229.el7.x86_64 #1 SMP Fri Mar 6 11:36:42 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux\n'
In [49]: run.wait()
Out[49]: 0

注意: 当执行命令的参数或者返回中包含了中文文字,那么建议使用subprocess,如果使用os.popen则会出现错误。

5. sh模块

安装:pip install sh

In [62]: from sh import ifconfig
In [63]: run = sh.ifconfig
In [64]: run
Out[64]: <Command '/usr/sbin/ifconfig'>
In [65]: run()
Out[65]:
ens32: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.207 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::20c:29ff:fe71:888 prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:71:08:88 txqueuelen 1000 (Ethernet)
RX packets 95617464 bytes 8518940518 (7.9 GiB)
RX errors 0 dropped 7078520 overruns 0 frame 0
TX packets 1175268 bytes 172715015 (164.7 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 191 bytes 58512 (57.1 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 191 bytes 58512 (57.1 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
In [67]: run.bake()
Out[67]: <Command '/usr/sbin/ifconfig'>
In [68]: run('lo')
Out[68]:
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 191 bytes 58512 (57.1 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 191 bytes 58512 (57.1 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

执行脚本:

import sh
run = sh.Command("/home/amoffat/run.sh") # Absolute path
run()

多个参数:

from sh import tar
tar("cvf", "/tmp/test.tar", "/my/home/directory")

关键字参数:

# resolves to "curl http://duckduckgo.com/ -o page.html --silent"
curl("http://duckduckgo.com/", o="page.html", silent=True)
# or if you prefer not to use keyword arguments, this does the same thing:
curl("http://duckduckgo.com/", "-o", "page.html", "--silent")
# resolves to "adduser amoffat --system --shell=/bin/bash --no-create-home"
adduser("amoffat", system=True, shell="/bin/bash", no_create_home=True)
# or
adduser("amoffat", "--system", "--shell", "/bin/bash", "--no-create-home")

返回值:

output = ls("/")
print(output.exit_code) # should be 0
#捕获异常:
try: print(ls("/some/non-existant/folder"))
except ErrorReturnCode_2:
print("folder doesn't exist!")
create_the_folder()
except ErrorReturnCode:
print("unknown error")
exit(1)

###:

In [92]: sh.ls(sh.glob('*.txt'))
Out[92]: requirements.txt

tail:

In [93]: for line in sh.tail("-f", "requirements.txt", _iter=True):
....: print line #实现其他更好玩的功能
....:
requests==2.9.0
six==1.10.0
slip==0.4.0
#callback实现:
def process_output(line):
print(line)
p = tail("-f", "/var/log/some_log_file.log", _out=process_output)
p.wait()

py执行系统命令的更多相关文章

  1. Pyhton 学习总结 20 :执行系统命令

    在Python中执行系统命令有os.system().os.popen().commands.getstatusoutput().subprocess.Popen等     1.os.system() ...

  2. Python执行系统命令的方法

    Python中执行系统命令常见方法有两种: 两者均需 import os (1) os.system # 仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回信息 system(command) ...

  3. Python中执行系统命令常见的几种方法--转载

    Python中执行系统命令常见的几种方法 Python中执行系统命令常见的几种方法有: (1)os.system # 仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回信息 # 如果再命令行下执 ...

  4. Python执行系统命令:使用subprocess的Popen函数

    使用subprocess的Popen函数执行系统命令 参考: http://blog.sina.com.cn/s/blog_8f01450601017dlr.html http://blog.csdn ...

  5. 转 Python执行系统命令的方法

    传送门 Python执行系统命令的方法 http://www.linux-field.com/?p=15 Python中执行系统命令常见方法有两种: 两者均需 import os (1) os.sys ...

  6. python 执行系统命令模块比较

    python 执行系统命令模块比较 1.os.system模块 仅仅在子终端运行命令,返回状态码,0为成功,其他为失败,但是不返回执行结果 如果再命令行下执行,结果直接打印出来 >>> ...

  7. java中执行系统命令

    java程序中执行系统命令猛击下面的链接看看你就知道怎么用了 http://blog.csdn.net/a19881029/article/details/8063758 http://wuhongy ...

  8. Java 执行系统命令

    在Java中执行系统命令,主要是使用ProcessBuilder和Runtime.getRuntime().exec().而在这里主要是介绍两种方法的使用. 使用情景是在linux系统中,使用menc ...

  9. Python执行系统命令的方法 os.system(),os.popen(),commands

    os.popen():用python执行shell的命令,并且返回了结果,括号中是写shell命令 Python执行系统命令的方法: https://my.oschina.net/renwofei42 ...

随机推荐

  1. 扯蛋css

    使网页旋转代码: javascript:window.i=1;setInterval(function(){i++;document.body.style.cssText+="-webkit ...

  2. mysql count max min 语句用法

    count 用法 求总条数 $sql="select count(*) as total from e_user"; $query = mysql_query($sql, $lin ...

  3. 第一次使用cnblogs

    第一次使用!!!!!留名纪念下!!!!!!!!!!!

  4. LogFactory缺包异常

    抛出异常: Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/loggin ...

  5. Ubuntu下Android apk反编译

    需要用到的工具 1.apktool_2.0.3.jar https://bbuseruploads.s3.amazonaws.com/0becf6a1-1706-4f2e-9ae6-891e00a8d ...

  6. JQuery中$.ajax()方法参数详解及应用

    url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址. type: 要求为String类型的参数,请求方式(post或get)默认为get.注意其他http请求方法,例如put和 ...

  7. python之~利用PIL模块在图片上写写画画

    借鉴了教程: http://yxnt.github.io/2016/05/15/Pillow-Python3.5/ 完成作业如下: 后来学着写给自己的图片加了水印. from PIL import I ...

  8. form里面的action和method(post和get的方法)使用

    一.form里面的action和method的post使用方法 <%@ Page Language="C#" AutoEventWireup="true" ...

  9. Google科学家前腾讯副总裁吴军将出席第二届万物互联创新大会

    当越来越多的科技产品注入互联网的基因,"万物互联"的模式悄然兴起.第二届万物互联创新大会(B12大会)将于2016-11-13日在杭州市余杭区隆重召开.Google科学家前腾讯副总 ...

  10. hdu_5904_LCIS(DP)

    题目链接:hdu_5904_LCIS 题意: 给你两串数,让你找这两串数的最长公共子序列,并且这个最长公共子序列是连续的数值 题解: 我们首先先分别处理出a,b的每个数的最长连续的长度 然后随便找一串 ...