Skip to content

Instantly share code, notes, and snippets.

@peterlozano
Created March 19, 2014 09:49
Show Gist options
  • Save peterlozano/9638624 to your computer and use it in GitHub Desktop.
Save peterlozano/9638624 to your computer and use it in GitHub Desktop.
Auto aliases to go to project directories. Place in .bashrc or .profile
for i in /var/www/*; do
if [ -d "$i/dev/www/sites/default" ]; then
alias `basename $i`="cd $i/dev/www/sites/default"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment