在 python2 中,我会使用“命令”模块来执行 bash 命令。典型用法如下所示。
鉴于剧本...
$cat sample.py
import commands
print commands.getoutput("ls -l")
...运行它给出:
$ python sample.py
total 8
-rw-r--r-- 1 username wheel 61 Jun 14 11:58 sample.py
在不包含命令模块的python3中,我怎么能做这样简单优雅的事情???