Python执行Linux系统命令的四种方法

(1) os.system

仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回信息

system(command) -> exit_status

Execute the command (a string) in a subshell.

如果再命令行下执行,结果直接打印出来

>>> os.system(‘ls‘)

04101419778.CHM   bash      document    media      py-django   video

11.wmv            books     downloads   Pictures  python

all-20061022      Desktop   Examples    project    tools

(2) os.popen

该方法不但执行命令还返回执行后的信息对象

popen(command [, mode=‘r‘ [, bufsize]]) -> pipe

Open a pipe to/from a command returning a file object.

>>>tmp = os.popen(‘ls *.py‘).readlines()

>>>tmp

Out[21]:

[‘dump_db_pickle.py ‘,

‘dump_db_pickle_recs.py ‘,

‘dump_db_shelve.py ‘,

‘initdata.py ‘,

‘__init__.py ‘,

‘make_db_pickle.py ‘,

‘make_db_pickle_recs.py ‘,

‘make_db_shelve.py ‘,

‘peopleinteract_query.py ‘,

‘reader.py ‘,

‘testargv.py ‘,

‘teststreams.py ‘,

‘update_db_pickle.py ‘,

‘writer.py ‘]

好处在于:将返回的结果赋于一变量,便于程序的处理。

(3)  使用模块 subprocess

>>> import subprocess

>>> subprocess.call(["cmd", "arg1", "arg2"],shell=True)

获取返回和输出:

import subprocess

p = subprocess.Popen(‘ls‘, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

for line in p.stdout.readlines():

print line,

retval = p.wait()

(4)  使用模块 commands

>>> import commands

>>> dir(commands)

[‘__all__‘, ‘__builtins__‘, ‘__doc__‘, ‘__file__‘, ‘__name__‘, ‘getoutput‘, ‘getstatus‘,‘getstatusoutput‘, ‘mk2arg‘, ‘mkarg‘]

>>> commands.getoutput("date")

‘Wed Jun 10 19:39:57 CST 2009‘

>>>

>>> commands.getstatusoutput("date")

(0, ‘Wed Jun 10 19:40:41 CST 2009‘)

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

Traceback (most recent call last):

File "www.1.qixoo.com/test1.py", line 56, inmain()

File "./test1.py", line 45, in main

fax.sendFax()

File "./mailfax/Fax.py", line 13, in sendFax

os.popen(cmd)

UnicodeEncodeError: ‘ascii‘ codec can‘t encode characters in position 46-52: ordinal not inrange(128)

时间: 2024-10-19 16:54:34

Python执行Linux系统命令的四种方法的相关文章

Python执行Linux系统命令的4种方法

(1) os.system 仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回信息 代码如下: system(command) -> exit_status Execute the command (a string) in a subshell. 如果在命令行下执行,结果直接打印出来 代码如下: >>>  os.system('ls') 04101419778.CHM   bash      document    media      py-django   video

linux安装IPython四种方法

IPython是Python的交互式Shell,提供了代码自动补完,自动缩进,高亮显示,执行Shell命令等非常有用的特性.特别是它的代码补完功能,例如:在输入zlib.之后按下Tab键,IPython会列出zlib模块下所有的属性.方法和类.完全可以取代自带的bash 下面介绍下linux安装IPython四种方法: 第一种:ipython源码安装ipython的源码下载页面为:https://pypi.python.org/pypi/ipython 或者是到git页面下载:https://g

自学Linux命令的四种方法

自学Linux命令的四种方法 导读 童鞋们刚接触linux时,在学习过程中中会遇到不少问题,学习linux摸不着头脑,那么下面介绍四种linux的学习方法,特别适合新手. 方法一:终端"每日提示" 在.bashrc中(/home/.bashrc)增加如下一行: echo "Did you know that:"; whatis$(ls /bin | shuf -n 1) 你只需要增加这行就够了!如果你想让它更娱乐化一些,你可以安装cowsay.Ubuntu/Debi

Python调用系统命令的四种方法

一.os.system(commandString) import os statusCode=os.system("powershell sleep 3 ;echo 天下大势为我所控") print("over",statusCode) 这里使用了powershell来执行sleep命令,在cmd里面是没有sleep命令的. 会发现os.system(commandString)是阻塞的. 这个函数类似C语言里面的stdlib.h中的system命令 这种方法只负

【erlang】执行linux命令的两种方法

os.cmd(Cmd) os模块提供了cmd函数可以执行linux系统shell命令(也可以执行windows命令).返回一个Cmd命令的标准输出字符串结果.例如在linux系统中执行os:cmd("date"). 返回linux的时间. 这种比较简单,一般情况下,也满足了大部分需求. erlang:open_port(PortName, PortSettings) 当os.cmd(Cmd) 满足不了你的需求的时候,就可以用强大的open_port(PortName, PortSett

python执行shell指令的几种方法

1.os.system() 优点:简单,linux&widnows等平台均可用,只需要判断返回结果是0还是1即可判断是否执行成功. 缺点:无法获取返回输出. 例子: os.system('ls') 2.os.popen() 优点:可获取输出结果 缺点:无法获取执行结果,需要根据输出结果做判断处理 例子: output = os.popen('ls') print output.read() 3.commands.getstatusoutput() 优点:可同时获取执行结果及返回结果 缺点:win

python中字符串格式化的四种方法

1 name = "huangemiling" 2 age= 10 3 address = 'nanjing' 4 print("My name is %s,age is %d,I come from %s"%(name,age,address)) 5 print("My name is {0},age is {1},I come from {2}".format(name,age,address)) 6 print("My name

Linux中执行shell脚本的4种方法

这篇文章主要介绍了Linux中执行shell脚本的4种方法总结,即在Linux中运行shell脚本的4种方法,需要的朋友可以参考下. bash shell 脚本的方法有多种,现在作个小结.假设我们编写好的shell脚本的文件名为hello.sh,文件位置在/root/bin目录中并已有执行权限(添加权限的方法:chmod +x hello.sh). 方法一:切换到shell脚本所在的目录(此时,称为工作目录)执行shell脚本: ./ 的意思是说在当前的工作目录下执行hello.sh.如果不加上

linux下查看mysql版本的四种方法

Linux查看MySQL版本的四种方法 1 在终端下执行 mysql -V 2 在help中查找 mysql --help |grep Distrib 3 在mysql 里查看 select version() 4 在mysql 里查看 status 原文地址:https://www.cnblogs.com/apolloren/p/9955158.html