Skip to content

Instantly share code, notes, and snippets.

@jnous
Last active August 29, 2015 13:59
Show Gist options
  • Save jnous/10869895 to your computer and use it in GitHub Desktop.
Save jnous/10869895 to your computer and use it in GitHub Desktop.
Example Drush script that does not work because site specified by alias from command line does not get bootstrapped.
#!/usr/bin/env drush
$params['vocabulary'] = drush_shift();
drush_print($params['vocabulary']);
$vid = db_query(
"SELECT vid FROM {taxonomy_vocabulary} WHERE machine_name=:vocab",
array(':vocab' => $params['vocabulary'])
)->fetchField();
drush_print($vid);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment