usefulfiles/shell_dotfiles/_bash_profile_osx
2017-08-06 00:44:17 +01:00

28 lines
1.0 KiB
Plaintext

PATH=/Users/martin/dev/tools:$PATH
HTTP_PROXY=
# http://wwwcache.open.ac.uk:80
export PATH=/Library/PostgreSQL/9.5/bin:$PATH
export HTTP_PROXY
export JAVA_HOME=$(/usr/libexec/java_home)
for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;
export ANDROID_HOME=$HOME/Library/android/sdk/
export PATH="$PATH:$HOME/Library/android/sdk/tools:$HOME/Library/android/sdk/platform-tools:"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
##
# Your previous /Users/martin/.bash_profile file was backed up as /Users/martin/.bash_profile.macports-saved_2016-05-04_at_13:31:48
##
# MacPorts Installer addition on 2016-05-04_at_13:31:48: adding an appropriate PATH variable for use with MacPorts.
export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
# Finished adapting your PATH environment variable for use with MacPorts.