Skip to content

Instantly share code, notes, and snippets.

@mpgeek
Last active August 29, 2015 14:04
Show Gist options
  • Save mpgeek/df30d2a36019e004b5bc to your computer and use it in GitHub Desktop.
Save mpgeek/df30d2a36019e004b5bc to your computer and use it in GitHub Desktop.
Dynamic drush aliases
<?php
$directories = glob('/var/www/dev/*');
foreach ($directories as $directory) {
$name = array_pop(explode('/', $directory));
$aliases[$name] = array(
'uri' => "http://$name.dev",
'root' => $directory,
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment