最佳答案
当从命令行调用“ fab”时,如何将参数传递给结构任务? 例如:
def task(something=''):
print "You said %s" % something
$ fab task "hello"
You said hello
Done.
有没有可能做到这一点,而不提示与 fabric.operations.prompt
?