Skip to content

Instantly share code, notes, and snippets.

@bitprophet
Forked from anonymous/gist:1038691
Created June 21, 2011 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitprophet/1038714 to your computer and use it in GitHub Desktop.
Save bitprophet/1038714 to your computer and use it in GitHub Desktop.
## Normal/flat -- this is still the default output of fab --list:
Available commands:
build_docs
deploy
db.migrate
system.install_package
system.debian.update_apt
## Short -- eqiuvalent to --shortlist or, now, fab -F short --list:
build_docs
deploy
db.migrate
system.install_package
system.debian.update_apt
## Nested -- an optional high level view, fab -F nested --list:
## (and keep in mind one still has to *call* tasks via dotted notation)
Available commands:
build_docs
deploy
db:
migrate
system:
install_package
debian:
update_apt
## Alternate nested style 1: just a reminder
Available commands (remember to call as module.task!):
build_docs
deploy
db:
migrate
system:
install_package
debian:
update_apt
## Alternate nested style 2: obvious leaves
Available commands:
build_docs
deploy
db.migrate
system.install_package
system.debian.update_apt
## Alternate nested style 3: more dots
Available commands:
build_docs
deploy
db:
.migrate
system:
.install_package
.debian:
.update_apt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment