The drush en command is used to enable one or more modules in Drupal. By running this command, you can quickly activate specified modules without having to navigate through the Drupal administrative interface.
Syntax:
bash
drush en module_nameReplace module_name with the machine name of the module you want to enable. You can enable multiple modules by separating their names with spaces.
For example:
bash
drush en example_module another_moduleThis command will enable both example_module and another_module. For more details, refer to the Drush documentation.
Comments