• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • vbs
  • DOS/BAT
  • hta/htc
  • python
  • perl
  • VBA
  • ColdFusion
  • ruby
  • PowerShell
  • Lua
  • Golang
  • linux shell
您的位置:首页 > 脚本语言 >linux shell > Python执行Linux系统命令的4种方法

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

作者:junjie 字体:[增加 减小] 来源:互联网

junjie 通过本文主要向大家介绍了python执行linux命令,python 调用linux命令,linux python命令,linux退出python命令,linux系统安装python等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com

(1) os.system

仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回信息
system(command) -> exit_status
Execute the command (a string) in a subshell.
</div>
如果再命令行下执行,结果直接打印出来
>>> os.system('ls')
04101419778.CHM   bash      document    media      py-django   video
11.wmv            books     downloads   Pictures  python
all-20061022      Desktop   Examples    project    tools
</div>

(2) os.popen

该方法不但执行命令还返回执行后的信息对象
popen(command [, mode='r' [, bufsize]]) -> pipe
Open a pipe to/from a command returning a file object.
</div>

例如:
>>>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 ']
</div>
好处在于:将返回的结果赋于一变量,便于程序的处理。

(3)  使用模块 subprocess

>>> import subprocess
>>> subprocess.call(["cmd", "arg1", "arg2"],shell=True)
</div>
获取返回和输出:
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()
</div>

(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')
</div>

注意: 当执行命令的参数或者返回中包含了中文文字,那么建议使用subprocess,如果使用os.popen则会出现下面的错误:
Traceback (most recent call last):
  File "./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)
</div>

</div>

您可能想查找下面的文章:

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

相关文章

  • bash脚本编程学习之算术运算与文件查找
  • Shell脚本编程中常用的数学运算实例
  • UNIX sh(Bourne Shell)脚本里面使用数组的两种方法
  • 常用Linux Shell进阶部分小结
  • Shell脚本把文件从GBK转为UTF-8编码
  • 根据公司需求写的一个linux 巡检小脚本
  • Linux 命令每天必学(34)之du命令
  • linux获取系统启动时间示例详解
  • Bash Shell脚本学习小结
  • 实现自动清除日期目录shell脚本实例代码

文章分类

  • vbs
  • DOS/BAT
  • hta/htc
  • python
  • perl
  • VBA
  • ColdFusion
  • ruby
  • PowerShell
  • Lua
  • Golang
  • linux shell

最近更新的内容

    • fedora 开机启动/禁止开机启动服务的实现
    • sed删除文件中的一行内容的脚本代码
    • shell两个文件去重的多种姿势
    • shell脚本结合iptables防端口扫描的实现
    • Shell脚本实现线上服务器之间对比文件是否一致
    • ssh,scp自动登陆的实现方法
    • linux下source命令使用详解
    • Git中需要熟记的命令小结
    • linux自动清理日志脚本分享
    • 使用netcat(瑞士军刀)进行文件传输

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有