Ive got drush working on multiple sites with this in aliases.drushrc.php
<?php
$aliases = array(
'site1' => array(
'uri' => 'site1.com',
'root' => '/Applications/MAMP/htdocs/site1/docroot',
),
'site2' => array(
'uri' => 'site2.com',
'root' => '/Applications/MAMP/htdocs/site2/public',
),
);
This works great but im not only working on one site so id like to be able to leave out the site name when executing drush commands. So instead of drush @site1 cc
all I could just do drush cc all
. Can I do this within this file?