subprocess使用方法

2024-09-04 22:32
文章标签 使用 方法 subprocess

本文主要是介绍subprocess使用方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

代码示例:

#!/usr/bin/env pythonimport subprocess
import sysdef print_file_type(file_name):cmd = ['file ' + file_name]p = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE)stdout, stderr = p.communicate()print 'stdout:', stdoutprint 'stderr:', stderrprint 'return code:', p.returncodedef usage():    print sys.argv[0], "file_name"if __name__=="__main__":    argc = len(sys.argv)    if argc != 2:    usage()    sys.exit(-1)    file_name = sys.argv[1]  print_file_type(file_name)

运行示例:

flying-bird@flyingbird:~/examples/python/print_file_type$ ./print_file_type.py ./print_file_type.py
stdout: ./print_file_type.py: Python script, ASCII text executablestderr: None
return code: 0
flying-bird@flyingbird:~/examples/python/print_file_type$ ./print_file_type.py ../../cpp/read_write_read/a.out 
stdout: ../../cpp/read_write_read/a.out: ELF 32-bit LSB  executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=5520f400b4561a89d9d2b712a8b288ef72411a49, not strippedstderr: None
return code: 0
flying-bird@flyingbird:~/examples/python/print_file_type$ file ./print_file_type.py
./print_file_type.py: Python script, ASCII text executable
flying-bird@flyingbird:~/examples/python/print_file_type$ file ../../cpp/read_write_read/a.out 
../../cpp/read_write_read/a.out: ELF 32-bit LSB  executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=5520f400b4561a89d9d2b712a8b288ef72411a49, not stripped
flying-bird@flyingbird:~/examples/python/print_file_type$ 

参考资料:

Android源码的build/tools/releasetools/common.py的如下部分:

def Run(args, **kwargs):"""Create and return a subprocess.Popen object, printing the commandline on the terminal if -v was specified."""if OPTIONS.verbose:print "  running: ", " ".join(args)return subprocess.Popen(args, **kwargs)def GetKeyPasswords(keylist):"""Given a list of keys, prompt the user to enter passwords forthose which require them.  Return a {key: password} dict.  passwordwill be None if the key has no password."""no_passwords = []need_passwords = []key_passwords = {}devnull = open("/dev/null", "w+b")for k in sorted(keylist):# We don't need a password for things that aren't really keys.if k in SPECIAL_CERT_STRINGS:no_passwords.append(k)continuep = Run(["openssl", "pkcs8", "-in", k+OPTIONS.private_key_suffix,"-inform", "DER", "-nocrypt"],stdin=devnull.fileno(),stdout=devnull.fileno(),stderr=subprocess.STDOUT)p.communicate()if p.returncode == 0:# Definitely an unencrypted key.no_passwords.append(k)else:p = Run(["openssl", "pkcs8", "-in", k+OPTIONS.private_key_suffix,"-inform", "DER", "-passin", "pass:"],stdin=devnull.fileno(),stdout=devnull.fileno(),stderr=subprocess.PIPE)stdout, stderr = p.communicate()if p.returncode == 0:# Encrypted key with empty string as password.key_passwords[k] = ''elif stderr.startswith('Error decrypting key'):# Definitely encrypted key.# It would have said "Error reading key" if it didn't parse correctly.need_passwords.append(k)else:# Potentially, a type of key that openssl doesn't understand.# We'll let the routines in signapk.jar handle it.no_passwords.append(k)devnull.close()key_passwords.update(PasswordManager().GetPasswords(need_passwords))key_passwords.update(dict.fromkeys(no_passwords, None))return key_passwords




这篇关于subprocess使用方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1137211

相关文章

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Window Server2016加入AD域的方法步骤

《WindowServer2016加入AD域的方法步骤》:本文主要介绍WindowServer2016加入AD域的方法步骤,包括配置DNS、检测ping通、更改计算机域、输入账号密码、重启服务... 目录一、 准备条件二、配置ServerB加入ServerA的AD域(test.ly)三、查看加入AD域后的变

Window Server2016 AD域的创建的方法步骤

《WindowServer2016AD域的创建的方法步骤》本文主要介绍了WindowServer2016AD域的创建的方法步骤,文中通过图文介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、准备条件二、在ServerA服务器中常见AD域管理器:三、创建AD域,域地址为“test.ly”

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学

JAVA系统中Spring Boot应用程序的配置文件application.yml使用详解

《JAVA系统中SpringBoot应用程序的配置文件application.yml使用详解》:本文主要介绍JAVA系统中SpringBoot应用程序的配置文件application.yml的... 目录文件路径文件内容解释1. Server 配置2. Spring 配置3. Logging 配置4. Ma

Linux使用dd命令来复制和转换数据的操作方法

《Linux使用dd命令来复制和转换数据的操作方法》Linux中的dd命令是一个功能强大的数据复制和转换实用程序,它以较低级别运行,通常用于创建可启动的USB驱动器、克隆磁盘和生成随机数据等任务,本文... 目录简介功能和能力语法常用选项示例用法基础用法创建可启动www.chinasem.cn的 USB 驱动

Java 字符数组转字符串的常用方法

《Java字符数组转字符串的常用方法》文章总结了在Java中将字符数组转换为字符串的几种常用方法,包括使用String构造函数、String.valueOf()方法、StringBuilder以及A... 目录1. 使用String构造函数1.1 基本转换方法1.2 注意事项2. 使用String.valu

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭