Basic Usage

List installed theme, list intstalled modules

1
2
drush pm-list --type=Theme
drush pm-list --type=Module --status=enabled

2024-05-06T133149

Exporting to File

List the installed modules using debug verbose mode, and export into csv format into file enabled_modules.csv:

1
drush pm-list --type=Module --status=Enabled -vvv --format=csv >> enabled_modules.csv

(noting that the --type and --status option have to be in front of the --format option, otherwise it will not work)

2024-05-06T133936

Other Usage

For other use case, you can refer to the document found via drush pm-list --help

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
Show a list of available extensions (modules and themes).

Options:
  --format[=FORMAT] Format the result data. Available formats: csv,json,list,php,print-r,sections,string,table,tsv,var_dump,var_export,xml,yaml [default: 
                    "table"]                                                                                                                              
  --type[=TYPE]     Only show extensions having a given type. Choices: module, theme. [default: "module,theme"]                                           
  --status[=STATUS] Only show extensions having a given status. Choices: enabled or disabled. [default: "enabled,disabled"]                               
  --package=PACKAGE Only show extensions having a given project packages (e.g. Development).                                                              
  --core            Only show extensions that are in Drupal core.                                                                                         
  --no-core         Only show extensions that are not provided by Drupal core.                                                                            
  --fields=FIELDS   Available fields: Package (package), Name (display_name), Name (name), Type (type), Path (path), Status (status), Version (version)   
                    [default: "package,display_name,status,version"]                                                                                      
  --field=FIELD     Select just one field, and force format to 'string'.                                                                                  

Aliases: pml, pm-list

Reference