diff --git a/drush/default_content.drush.inc b/drush/default_content.drush.inc
index 27aa03c..826e3f1 100644
--- a/drush/default_content.drush.inc
+++ b/drush/default_content.drush.inc
@@ -41,11 +41,28 @@ function default_content_drush_command() {
     'aliases' => ['dcem'],
     'required-arguments' => 1,
   ];
+  $items['default-content-import-from-module'] = [
+    'description' => dt('Import content.'),
+    'arguments' => [
+      'module' => dt('The name of the module to import its content.'),
+    ],
+    'aliases' => ['dcifm'],
+  ];
 
   return $items;
 }
 
 /**
+ * Callback for dcifm drush command to import content from a module.
+ *
+ * @param string $module
+ *   Module name.
+ */
+function drush_default_content_import_from_module($module = 'default_content') {
+  default_content_modules_installed([$module]);
+}
+
+/**
  * Exports a piece of content into the stdout or into a file.
  *
  * @param string $entity_type_id
