Python 运行 shell 获取输出结果的实例


Posted in Python onJanuary 07, 2019

首先使用内置模块os.

>>> import os
>>> code = os.system("pwd && sleep 2")
# /User/zhipeng
>>> print code
# 0

问题是 os.system 只能获取到结束状态

使用内置模块 subprocess

>>> import subprocess
>>> subprocess.Popen("pwd && sleep 2", shell=True, cwd="/home")
# <subprocess.Popen object at 0x106498310>
# /home

>>> sub = subprocess.Popen("pwd && sleep 2", shell=True, stdout=subprcess.PIPE)
>>> sub.wait()
>>> print sub.stdout.read()
# /User/zhipeng
subprocess.Popen还支持一些别的参数 
bufsize,executable=None, stdin=None, stdout=None, stderr=None 
preexec_fn=None, close_fds=False, shell=False, cwd=None, env=None 
universal_newlines=False, startupinfo=None, creationflags=0

使用第三方模块 sh

# pip install sh
>>> from sh import ifconfig
>>> print ifconfig("eth0")

>>> from sh import bash
>>> bash("pwd")
Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
 File "/Library/Python/2.7/site-packages/sh.py", line 1021, in __call__
 return RunningCommand(cmd, call_args, stdin, stdout, stderr)
 File "/Library/Python/2.7/site-packages/sh.py", line 486, in __init__
 self.wait()
 File "/Library/Python/2.7/site-packages/sh.py", line 500, in wait
 self.handle_command_exit_code(exit_code)
 File "/Library/Python/2.7/site-packages/sh.py", line 516, in handle_command_exit_code
 raise exc(self.ran, self.process.stdout, self.process.stderr)
sh.ErrorReturnCode_126: 
 RAN: '/bin/bash ls'
 STDOUT:
 STDERR:
/bin/ls: /bin/ls: cannot execute binary file

# 不能这么用
>>> from sh import ls
>>> ls()
# hello.txt 1.txt
# ls -al
>>> ls(a=True, l=True)
# ls(al=True) 是不可以的

这操作太复杂了, 项目中使用也太糟心了, 也没有办法多个命令同时用.不过可以用别的方式代替

# bash -c command 可以很好的解决这个问题
# bash -c "sleep 1 && pwd"
>>> result = bash(c="pwd", _timeout=1, _cwd="/home")
>>> print result
# -rw-r--r--@ 1 zhipeng staff 0 10 13 18:30 hello.txt
# -rw-r--r--@ 1 zhipeng staff 0 10 13 18:30 1.txt

>>> result = bash(c="pwd", _timeout=1, _cwd="/")
>>> print result
# /
>>> bash(c="pwd && sleep 2", _timeout=1)
Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
 File "/Library/Python/2.7/site-packages/sh.py", line 1021, in __call__
 return RunningCommand(cmd, call_args, stdin, stdout, stderr)
 File "/Library/Python/2.7/site-packages/sh.py", line 486, in __init__
 self.wait()
 File "/Library/Python/2.7/site-packages/sh.py", line 498, in wait
 raise TimeoutException(-exit_code)
sh.TimeoutException
参数里面可以添加非命令参数. 需要以_开头, 例如上面的_timeout, _cwd. 详见sh.py 源码 

还支持以下参数 

internal_bufsize, err_bufsize, tee, done, in, decode_errors, tty_in, 
out, cwd, timeout_signal, bg, timeout, with, ok_code, err, env, no_out,

参考:

https://github.com/amoffat/sh/blob/master/sh.py
https://github.com/amoffat/sh

以上这篇Python 运行 shell 获取输出结果的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python XlsxWriter模块Chart类用法实例分析
Mar 11 Python
python常用数据重复项处理方法
Nov 22 Python
numpy创建单位矩阵和对角矩阵的实例
Nov 29 Python
pytorch 改变tensor尺寸的实现
Jan 03 Python
python读取ini配置的类封装代码实例
Jan 08 Python
pyinstaller打包成无控制台程序时运行出错(与popen冲突的解决方法)
Apr 15 Python
Python内置函数locals和globals对比
Apr 28 Python
Python读写csv文件流程及异常解决
Oct 20 Python
python通过函数名调用函数的几种方法总结
Jun 07 Python
OpenCV-Python模板匹配人眼的实例
Jun 08 Python
Python提取PDF指定内容并生成新文件
Jun 09 Python
python神经网络 使用Keras构建RNN训练
May 04 Python
在python 中实现运行多条shell命令
Jan 07 #Python
Python之使用adb shell命令启动应用的方法详解
Jan 07 #Python
python 对多个csv文件分别进行处理的方法
Jan 07 #Python
python 同时运行多个程序的实例
Jan 07 #Python
python实现将多个文件分配到多个文件夹的方法
Jan 07 #Python
在python中使用with打开多个文件的方法
Jan 07 #Python
python读取文件名并改名字的实例
Jan 07 #Python
You might like
献给php初学者(入门学习经验谈)
2010/10/12 PHP
基于PHP+Ajax实现表单验证的详解
2013/06/25 PHP
php跨站攻击实例分析
2014/10/28 PHP
Laravel 5框架学习之Laravel入门和新建项目
2015/04/07 PHP
PHP单例模式模拟Java Bean实现方法示例
2018/12/07 PHP
JavaScript 对象模型 执行模型
2010/10/15 Javascript
in.js 一个轻量级的JavaScript颗粒化模块加载和依赖关系管理解决方案
2011/07/26 Javascript
JQuery Tips相关(1)----关于$.Ready()
2014/08/14 Javascript
javascript变量声明实例分析
2015/04/25 Javascript
实例详解jQuery表单验证插件validate
2016/01/18 Javascript
Listloading.js移动端上拉下拉刷新组件
2016/08/04 Javascript
jQuery Validation Engine验证控件调用外部函数验证的方法
2017/01/18 Javascript
angularjs下拉框空白的解决办法
2017/06/20 Javascript
vue-cli webpack配置文件分析
2019/05/20 Javascript
详解Vue 数据更新了但页面没有更新的 7 种情况汇总及延伸总结
2020/05/28 Javascript
JavaScript 闭包的使用场景
2020/09/17 Javascript
vue移动端下拉刷新和上滑加载
2020/10/27 Javascript
python中bisect模块用法实例
2014/09/25 Python
简单介绍Python2.x版本中的cmp()方法的使用
2015/05/20 Python
python获取当前目录路径和上级路径的实例
2018/04/26 Python
python绘制散点图并标记序号的方法
2018/12/11 Python
python selenium执行所有测试用例并生成报告的方法
2019/02/13 Python
Python3之手动创建迭代器的实例代码
2019/05/22 Python
解决安装python3.7.4报错Can''t connect to HTTPS URL because the SSL module is not available
2019/07/31 Python
python 控制Asterisk AMI接口外呼电话的例子
2019/08/08 Python
python bluetooth蓝牙信息获取蓝牙设备类型的方法
2019/11/29 Python
python线程信号量semaphore使用解析
2019/11/30 Python
TensorFlow 多元函数的极值实例
2020/02/10 Python
python3格式化字符串 f-string的高级用法(推荐)
2020/03/04 Python
C#面试问题
2016/07/29 面试题
工作睡觉检讨书
2014/02/25 职场文书
实习协议书范本
2014/04/22 职场文书
党员公开承诺书2015
2015/01/21 职场文书
2016年暑期教师培训心得体会
2016/01/09 职场文书
2016大学生国家助学贷款承诺书
2016/03/25 职场文书
Python Pandas pandas.read_sql函数实例用法
2021/06/21 Python