application_run3.txt 696 B

1234567891011121314151617181920212223242526272829
  1. Description:
  2. Lists 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. Help:
  11. The list command lists all commands:
  12. php app/console list
  13. You can also display the commands for a specific namespace:
  14. php app/console list test
  15. You can also output the information in other formats by using the --format option:
  16. php app/console list --format=xml
  17. It's also possible to get raw list of commands (useful for embedding command runner):
  18. php app/console list --raw