prestashop:module:listsrc/PrestaShopBundle/Command/ModuleListCommand.php--active: Show only installed and enabled modules (optional)--disabled: Show only installed but disabled modules (optional)--not-installed: Show only modules present on disk or registered via the actionListModules hook but not installed (optional)--all: Include uninstalled modules alongside installed ones (optional)--simple: Output only technical names, one per line, instead of a table (optional)This command lists shop modules from the command line. By default it prints a table of installed modules with their name, version, and status (Enabled or Disabled), sorted alphabetically.
The scope options --active, --disabled, --not-installed, and --all are mutually exclusive: passing more than one returns an error and a non-zero exit code. The --simple flag is orthogonal and composes with any scope filter, which makes it convenient for grep, awk, or xargs pipelines.
The existing prestashop:module command is left unchanged.
$ bin/console prestashop:module:list
$ bin/console prestashop:module:list --disabled
$ bin/console prestashop:module:list --simple --disabled
$ bin/console prestashop:module:list --all