Created
September 18, 2012 18:12
-
-
Save steriley/3744760 to your computer and use it in GitHub Desktop.
My Bash Profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PATH=~/bin:/usr/local/bin:/usr/local/mysql/bin:$PATH | |
export EDITOR=subl | |
# command prompt change: | |
# http://osxdaily.com/2006/12/11/how-to-customize-your-terminal-prompt/ | |
export PS1="$ " | |
# add colour to the terminal output | |
export CLICOLOR=1 | |
export LSCOLORS=cxFxCxDxBxegedabagacad | |
alias zf=/Users/ste_riley/Sites/zend/bin/zf.sh | |
# no longer required as mysql is in $PATH | |
#alias mysql=/usr/local/mysql/bin/mysql | |
#alias mysqladmin=/usr/local/mysql/bin/mysqladminal | |
# shorthand to open hosts and vhosts in sublime | |
alias hosts='subl /etc/hosts' | |
alias vhost='subl /etc/apache2/extra/httpd-vhosts.conf' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment