Python 标准库之 commands

1. 背景

关于 commands 的说明:

  1. python 3.0 之后移除此命令,使用 subprocess代替;
  2. python 3.x 使用 subprocess 创建一个新进程;

最开始的时候用 Python 学会了 os.system() 这个方法是阻塞当前主进程执行的,只有该命令执行完毕,主进程才会继续执行。

os.system('ping -c 2 www.baidu.com')

而通过 os.popen() 返回的是 file read 的对象,对其进行读取 read() 的操作可以看到执行的输出。这个方法是后台执行,不影响后续脚本运行。

output = os.popen('ping -c 2 www.baidu.com')
print(output.read())

2. commands 方法

commands 模块是 Python 的内置模块,它主要有三个函数:

函数 说明
getoutput(cmd) Return output (stdout or stderr) of executing cmd in a shell.
getstatus(file) Return output of “ls -ld file” in a string.
getstatusoutput(cmd) Return (status, output) of executing cmd in a shell.

(1). commands.getoutput(cmd) 返回Shell命令的输出内容:

In [30]: import commands
In [31]: commands.getoutput("pwd")
Out[31]: '/home/ubuntu'

(2). commands.getstatus(file) 返回 ls -ld file 执行的结果:该函数已被 Python 丢弃,不建议使用,它返回 ls -ld file 的结果(String)

In [42]: commands.getstatus("/home/ubuntu/Downloads/")
Out[42]: 'drwxr-xr-x 2 ubuntu ubuntu 4096 5\xe6\x9c\x88   4 15:36 /home/ubuntu/Downloads/'

(3). commands.getstatusoutput(cmd) 返回一个元组(status,output),status 代表的 shell 命令的返回状态,如果成功的话是 0;output 是 shell 的返回的结果:

In [33]: commands.getstatusoutput("pwd")
Out[33]: (0, '/home/ubuntu')

你可能感兴趣的:(Python)