public
Description: My bash setup and Bash functions
Homepage:
Clone URL: git://github.com/limeyd/bash-profile.git
bash-profile / _profile
100644 14 lines (10 sloc) 0.388 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export PATH=/usr/local/git/bin:$PATH
 
#add a user site-packages to the python path
export SITE_PACKAGES=~/python/site-packages
export PYTHONPATH=$SITE_PACKAGES:$PYTHONPATH
 
#add mysql to the path
export PATH=/usr/local/mysql/bin:$PATH
 
#add a user bin to the PATH for custom python scripts like
# django's manage.py, pylink etc...
export PATH=~/python/bin:$PATH
export PATH=~/bin:$PATH