application_run3.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Description:
  2. List commands
  3. Usage:
  4. list [options] [--] [<namespace>]
  5. Arguments:
  6. namespace The namespace name
  7. Options:
  8. --raw To output raw command list
  9. --format=FORMAT The output format (txt, xml, json, or md) [default: "txt"]
  10. --short To skip describing commands' arguments
  11. -h, --help Display help for the given command. When no command is given display help for the list command
  12. -q, --quiet Do not output any message
  13. -V, --version Display this application version
  14. --ansi|--no-ansi Force (or disable --no-ansi) ANSI output
  15. -n, --no-interaction Do not ask any interactive question
  16. -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
  17. Help:
  18. The list command lists all commands:
  19. app/console list
  20. You can also display the commands for a specific namespace:
  21. app/console list test
  22. You can also output the information in other formats by using the --format option:
  23. app/console list --format=xml
  24. It's also possible to get raw list of commands (useful for embedding command runner):
  25. app/console list --raw