Fabric:并行运行任意远程shell命令

Fabric的任意命令模式允许我执行

$fab [options] -- [shell command]

as defined here

现在,我如何利用fabric来并行运行命令?顺序执行需要花费大量时间

最佳答案 从
docs on the fab command开始使用-P选项.例如:

$fab -R role_name -P -- du
点赞