Skip to content

Instantly share code, notes, and snippets.

@nkgokul
Created February 23, 2015 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkgokul/a934920aa75fe09f944e to your computer and use it in GitHub Desktop.
Save nkgokul/a934920aa75fe09f944e to your computer and use it in GitHub Desktop.
Drush query from drupalxray
var drushString = "drush en --y ";
jQuery(".xray-site-modules ul li a").each(
function(){
var url = jQuery(this).attr("href");
var lastPart = url.split("/").pop();
drushString += lastPart + " ";
}
);
console.log(drushString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment