diff --git a/commands/pm/pm.drush.inc b/commands/pm/pm.drush.inc
index 89620c3..f714d08 100644
--- a/commands/pm/pm.drush.inc
+++ b/commands/pm/pm.drush.inc
@@ -254,6 +254,17 @@ function pm_drush_command() {
       'release_info',
     ),
   );
+  $items['pm-readme'] = array(
+    'description' => 'Print README file for given projects.',
+    'arguments' => array(
+      'projects' => 'A list of project names, with optional version. Defaults to \'drupal\'',
+    ),
+    'aliases' => array('pmr'),
+    'bootstrap' => DRUSH_BOOTSTRAP_MAX,
+    'engines' => array(
+      'release_info',
+    ),      
+  ); 
   return $items;
 }
 
@@ -1226,6 +1237,21 @@ function drush_pm_updatecode_postupdate() {
 }
 
 /**
+ * Command callback. Show README file for given project(s).
+ */
+function drush_pm_readme() {
+  $release_info = drush_get_option('release-info', 'updatexml');
+  drush_include_engine('release_info', $release_info);
+
+  if (!$requests = pm_parse_arguments(func_get_args(), FALSE)) {
+    $requests = array('drupal');
+  }
+  $requests = pm_parse_project_version($requests);
+  
+  return release_info_print_readme($requests);
+}
+
+/**
  * Sanitize user provided arguments to several pm commands.
  *
  * Return an array of arguments off a space and/or comma separated values. It also
diff --git a/commands/pm/release_info/updatexml.inc b/commands/pm/release_info/updatexml.inc
index ba5554a..e1c3aa4 100644
--- a/commands/pm/release_info/updatexml.inc
+++ b/commands/pm/release_info/updatexml.inc
@@ -226,6 +226,78 @@ function release_info_print_releasenotes($requests, $print_status = TRUE, $tmpfi
 }
 
 /**
+ * Prints README file for given projects.
+ *
+ * @param $requests
+ *   An array of drupal.org project names optionally with a version.
+ */
+function release_info_print_readme($requests) {
+  $info = release_info_get_releases($requests);
+      
+  if (!$info) {
+    return drush_log(dt('No valid projects given.'), 'ok');
+  }
+
+  if (is_null($tmpfile)) {
+    $tmpfile = drush_tempnam('pmr-' . implode('-', $requests) . '.');
+  }
+  
+  foreach ($info as $key => $project) {
+    $selected_version = '';
+    // If the request included version, only show its README file.
+    if (isset($requests[$key]['version'])) {
+      $selected_version = $requests[$key]['version'];
+    }
+    else {
+      // Special handling if the project is installed.
+      if (isset($project['installed'])) {
+        $selected_version = $project['installed'];
+      }     
+      else if (isset($project['recommended'])) {
+        // Project is not installed so we will show the README file
+        // for the recommended version, as the user did not specify one.        
+        $selected_version = $project['recommended'];        
+      }
+      else {
+        // Falling back to most recent release.
+        $selected_version = key($project['releases']);
+      }
+    }
+    
+    // Finding tag for the selected version and try to read the README file.
+    if (!empty($selected_version)) {
+      $tag = $project['releases'][$selected_version]['tag'];
+      
+      // Git URL depends on tag
+      if ($tag == 'master') {
+        $url = 'http://drupalcode.org/project/' . $key . '.git/blob_plain/refs/heads/master:/README.txt';
+      }
+      else {
+        $url = 'http://drupalcode.org/project/' . $key . '.git/blob_plain/refs/tags/' . $tag . ':/README.txt';
+      }
+                  
+      // Downloading README file if it exists and add the content to the tmp
+      // file.
+      $readme_tmpfile = drush_tempnam('pmr-' . $key . '-' . $tag. '.');
+      if ($file = drush_download_file($url, $readme_tmpfile)) {
+        $readme_content = file_get_contents($file);
+        $readme_header = dt("<hr>
+ > README FILE FOR '!name' PROJECT, VERSION !version:
+<hr>
+ ", array('!name' => strtoupper($key), '!version' => $selected_version));
+        $print = drush_html_to_text($readme_header . $readme_content . "\n\n", array('br', 'p', 'ul', 'ol', 'li', 'hr'));
+        if (drush_drupal_major_version() < 7) { $print .= "\n"; }
+        file_put_contents($tmpfile, $print, FILE_APPEND);
+      }
+      else {
+        // Print error....
+      }
+    }
+  }
+  drush_print_file($tmpfile);
+}
+
+/**
  * Helper function for release_info_filter_releases().
  */
 function _release_info_compare_date($a, $b) {
