Skip to content

Instantly share code, notes, and snippets.

@vivanishin
Created February 7, 2016 20:19
Show Gist options
  • Save vivanishin/ac62a45b943dff78d064 to your computer and use it in GitHub Desktop.
Save vivanishin/ac62a45b943dff78d064 to your computer and use it in GitHub Desktop.
bash profile (my exports and aliases for mac)
export PATH=/usr/local/bin:$PATH:/usr/local/texlive/2014/bin/x86_64-darwin
export PYTHONSTARTUP="$HOME/.pythonrc"
source /usr/local/bin/virtualenvwrapper.sh
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
export PS1="\u@\h \w>"
alias l=ls
alias ll="ls -l"
alias j="jobs"
alias "]"=open
alias ldd="otool -L"
alias myip='ifconfig | grep "inet " | grep -v 127.0.0.1 | cut -d\ -f2'
. ~/.bashrc_ubuntu
export PATH=/usr/local/Cellar/gcc/4.9.1/bin:$PATH
export PATH=/usr/local/sbin:$PATH:/Users/vladislav/Applications/sage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment