Python调用系统命令os.system()和os.popen()的实现


Posted in Python onDecember 31, 2020

作为一门脚本语言,写脚本时执行系统命令可以说很常见了,python提供了相关的模块和方法。

os模块提供了访问操作系统服务的功能,由于涉及到操作系统,它包含的内容比较多,这里只说system和popen方法。

>>> import os
>>> dir(os)
['DirEntry', 'F_OK', 'MutableMapping', 'O_APPEND', 'O_BINARY', 'O_CREAT', 'O_EXCL', 'O_NOINHERIT', 'O_RANDOM', 'O_RDONLY', 'O_RDWR', 'O_SEQUENTIAL', 'O_SHORT_LIVED', 'O_TEMPORARY', 'O_TEXT', 'O_TRUNC', 'O_WRONLY', 'P_DETACH', 'P_NOWAIT', 'P_NOWAITO', 'P_OVERLAY', 'P_WAIT', 'PathLike', 'R_OK', 'SEEK_CUR', 'SEEK_END', 'SEEK_SET', 'TMP_MAX', 'W_OK', 'X_OK', '_Environ', '__all__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', '_execvpe', '_exists', '_exit', '_fspath', '_get_exports_list', '_putenv', '_unsetenv', '_wrap_close', 'abc', 'abort', 'access', 'altsep', 'chdir', 'chmod', 'close', 'closerange', 'cpu_count', 'curdir', 'defpath', 'device_encoding', 'devnull', 'dup', 'dup2', 'environ', 'errno', 'error', 'execl', 'execle', 'execlp', 'execlpe', 'execv', 'execve', 'execvp', 'execvpe', 'extsep', 'fdopen', 'fsdecode', 'fsencode', 'fspath', 'fstat', 'fsync', 'ftruncate', 'get_exec_path', 'get_handle_inheritable', 'get_inheritable', 'get_terminal_size', 'getcwd', 'getcwdb', 'getenv', 'getlogin', 'getpid', 'getppid', 'isatty', 'kill', 'linesep', 'link', 'listdir', 'lseek', 'lstat', 'makedirs', 'mkdir', 'name', 'open', 'pardir', 'path', 'pathsep', 'pipe', 'popen', 'putenv', 'read', 'readlink', 'remove', 'removedirs', 'rename', 'renames', 'replace', 'rmdir', 'scandir', 'sep', 'set_handle_inheritable', 'set_inheritable', 'spawnl', 'spawnle', 'spawnv', 'spawnve', 'st', 'startfile', 'stat', 'stat_float_times', 'stat_result', 'statvfs_result', 'strerror', 'supports_bytes_environ', 'supports_dir_fd', 'supports_effective_ids', 'supports_fd', 'supports_follow_symlinks', 'symlink', 'sys', 'system', 'terminal_size', 'times', 'times_result', 'truncate', 'umask', 'uname_result', 'unlink', 'urandom', 'utime', 'waitpid', 'walk', 'write']

os.system()

>>> help(os.system)
Help on built-in function system in module nt:

 
system(command)
  Execute the command in a subshell.

从字面意思上看,os.system()是在当前进程中打开一个子shell(子进程)来执行系统命令。

官方说法:

On Unix, the return value is the exit status of the process encoded in the format specified for wait().

The subprocess module provides more powerful facilities for spawning new processes and retrieving their results; using that module is preferable to using this function.

这个方法只返回状态码,执行结果会输出到stdout,也就是输出到终端。不过官方建议使用subprocess模块来生成新进程并获取结果是更好的选择。

>>> os.system('ls')
access.log douban.py mail.py myapp.py polipo proxychains __pycache__  spider.py test.py users.txt
0

os.popen()

>>> help(os.popen)
Help on function popen in module os:

popen(cmd, mode='r', buffering=-1)
  # Supply os.popen()

cmd:要执行的命令。
mode:打开文件的模式,默认为'r',用法与open()相同。
buffering:0意味着无缓冲;1意味着行缓冲;其它正值表示使用参数大小的缓冲。负的bufsize意味着使用系统的默认值,一般来说,对于tty设备,它是行缓冲;对于其它文件,它是全缓冲。

官方说法:

Open a pipe to or from command cmd. The return value is an open file object connected to the pipe, which can be read or written depending on whether mode is 'r' (default) or 'w'.

The close method returns None if the subprocess exited successfully, or the subprocess's return code if there was an error.

This is implemented using subprocess.Popen;

这个方法会打开一个管道,返回结果是一个连接管道的文件对象,该文件对象的操作方法同open(),可以从该文件对象中读取返回结果。如果执行成功,不会返回状态码,如果执行失败,则会将错误信息输出到stdout,并返回一个空字符串。这里官方也表示subprocess模块已经实现了更为强大的subprocess.Popen()方法。

>>> os.popen('ls')
<os._wrap_close object at 0x7f93c5a2d780>
>>> os.popen('la')
<os._wrap_close object at 0x7f93c5a37588>
>>> /bin/sh: la: command not found

>>> f = os.popen('ls')
>>> type(f)
<class 'os._wrap_close'>

读取执行结果:

>>> f.readlines()
['access.log\n', 'douban.py\n', 'import_test.py\n', 'mail.py\n', 'myapp.py\n', 'polipo\n', 'proxychains\n', '__pycache__\n', 'spider.py\n', 'test.py\n', 'users.txt\n']

这里使用os.popen来获取设备号,使用os.system来启动macaca服务(有时间了将macaca的一些经历写写吧)。

两者的区别是:

(1)os.system(cmd)的返回值只会有0(成功),1,2

(2)os.popen(cmd)会把执行的cmd的输出作为值返回。

参考:

https://docs.python.org/3/library/os.html#os.system
https://docs.python.org/3/library/os.html#os.popen

到此这篇关于Python调用系统命令os.system()和os.popen()的实现的文章就介绍到这了,更多相关Python os.system()和os.popen()内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python删除过期log文件操作实例解析
Jan 31 Python
Python简单实现查找一个字符串中最长不重复子串的方法
Mar 26 Python
在python3.5中使用OpenCV的实例讲解
Apr 02 Python
Python中的Socket 与 ScoketServer 通信及遇到问题解决方法
Apr 01 Python
python读出当前时间精度到秒的代码
Jul 05 Python
Pytorch实现的手写数字mnist识别功能完整示例
Dec 13 Python
python实现猜拳游戏
Mar 04 Python
Python Scrapy框架:通用爬虫之CrawlSpider用法简单示例
Apr 11 Python
Keras中 ImageDataGenerator函数的参数用法
Jul 03 Python
Python面向对象实现方法总结
Aug 12 Python
Python使用socket_TCP实现小文件下载功能
Oct 09 Python
手残删除python之后的补救方法
Jun 26 Python
Python使用Opencv实现边缘检测以及轮廓检测的实现
Dec 31 #Python
python 检测nginx服务邮件报警的脚本
Dec 31 #Python
Django 实现图片上传和下载功能
Dec 31 #Python
Python wordcloud库安装方法总结
Dec 31 #Python
Python的信号库Blinker用法详解
Dec 31 #Python
浅析python实现动态规划背包问题
Dec 31 #Python
python中doctest库实例用法
Dec 31 #Python
You might like
《猛禽小队》:DC宇宙的又一超级大烂片
2020/04/09 欧美动漫
让你同时上传 1000 个文件 (一)
2006/10/09 PHP
在mysql数据库原有字段后增加新内容
2009/11/26 PHP
如何使用PHP实现javascript的escape和unescape函数
2013/06/29 PHP
PHP使用GIFEncoder类生成gif动态滚动字幕
2014/07/01 PHP
PHP中使用GD库创建圆形饼图的例子
2014/11/19 PHP
php解析base64数据生成图片的方法
2016/12/06 PHP
PHP实现按之字形顺序打印二叉树的方法
2018/01/16 PHP
Prototype使用指南之array.js
2007/01/10 Javascript
JavaScript中去掉数组中的重复值的实现方法
2011/08/03 Javascript
输入自动提示搜索提示功能的使用说明:sugggestion.txt
2013/09/02 Javascript
JavaScript中for-in遍历方式示例介绍
2014/02/11 Javascript
ajax请求乱码的解决方法(中文乱码)
2014/04/10 Javascript
jQuery中:visible选择器用法实例
2014/12/30 Javascript
javascript清空table表格的方法
2015/05/14 Javascript
前端性能优化及技巧
2016/05/06 Javascript
基于jQuery实现表格的查看修改删除
2016/08/01 Javascript
JS实现touch 点击滑动轮播实例代码
2017/01/19 Javascript
基于Bootstrap table组件实现多层表头的实例代码
2017/09/07 Javascript
angular.extend方法的具体使用
2017/09/14 Javascript
基于JavaScript实现报警器提示音效果
2017/10/27 Javascript
Vue官方文档梳理之全局配置
2017/11/22 Javascript
JavaScript实现与使用发布/订阅模式详解
2019/01/19 Javascript
Python程序退出方式小结
2017/12/09 Python
python 输入一个数n,求n个数求乘或求和的实例
2018/11/13 Python
基于python的ini配置文件操作工具类
2019/04/24 Python
在Python中合并字典模块ChainMap的隐藏坑【推荐】
2019/06/27 Python
Django 对象关系映射(ORM)源码详解
2019/08/06 Python
pytorch实现从本地加载 .pth 格式模型
2020/02/14 Python
如何清空python的变量
2020/07/05 Python
Bally巴利英国官网:经典瑞士鞋履、手袋及配饰奢侈品牌
2018/05/07 全球购物
捷克钓鱼用品网上商店:Parys.cz
2018/06/15 全球购物
美国领先的宠物用品和宠物食品零售商:Petco
2020/10/28 全球购物
.net笔试题
2014/03/03 面试题
静态成员和非静态成员的区别
2012/05/12 面试题
导游词之白茶谷九龙峡
2019/10/23 职场文书