Skip to content

Instantly share code, notes, and snippets.

@vprasanth
Created July 28, 2015 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vprasanth/2ac2f40b9bf8d7274cb1 to your computer and use it in GitHub Desktop.
Save vprasanth/2ac2f40b9bf8d7274cb1 to your computer and use it in GitHub Desktop.
My .bash_profile
# .bash_profile
export CLICOLOR=1
# Source global definitions
#if [ -f /etc/bashrc ]; then
# . /etc/bashrc
#fi
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
PATH=/usr/local/bin:$PATH
export PATH
CM_HOME=/Users/prasanthv/code
export CM_HOME
export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
nvm use stable
#alias startserver='~/servers/apache-tomcat-7.0.59/bin/startup.sh && tail -f ~/servers/apache-tomcat-7.0.59/logs/catalina.out'
#alias stopserver='~/servers/apache-tomcat-7.0.59/bin/shutdown.sh'
#alias key='ssh-add ~/ibm/.ssh/id_rsa'
#alias ibm='cd ~/ibm/repos/'
#alias repos='cd ~/repos/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment