Fabric,将 bash 命令的结果检索到 python 变量中

Fabric, retrieving result of a bash command into a python variable

我想将命令的结果存储在变量中。

实例 运行 : a = sudo("ls -l my_filename | awk '{print }'")

我怎样才能做到这一点?

a = sudo("ls -l my_filename | awk '{print }'", capture=True )