-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbash_profile
More file actions
68 lines (54 loc) · 2.64 KB
/
bash_profile
File metadata and controls
68 lines (54 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
export CLICOLOR=1
export LSCOLORS=exFxCxBxcxegedabagacfx
export PS1="\[\033[0;31m\][\h:\w]$\[\033[0m\] "
##
# Your previous /Users/jamie/.bash_profile file was backed up as /Users/jamie/.bash_profile.macports-saved_2010-07-02_at_15:32:20
##
###source /afs/desy.de/group/grid/UI/OSX10.6/etc/globus-user-env.sh
# MacPorts Installer addition on 2010-07-02_at_15:32:20: 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.
##
# Your previous /Users/jamie/.bash_profile file was backed up as /Users/jamie/.bash_profile.macports-saved_2010-07-02_at_15:39:30
##
# MacPorts Installer addition on 2010-07-02_at_15:39:30: adding an appropriate PATH variable for use with MacPorts.
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
export ROOTSYS=/usr/local/root
export PATH=$ROOTSYS/bin:$PATH
export LD_LIBRARY_PATH=$ROOTSYS/lib:$LD_LIBRARY_PATH
#export DYLD_LIBRARY_PATH=$ROOTSYS/lib:$DYLD_LIBRARY_PATH #(MacOS X only)
DYLD_LIBRARY_PATH=$HOME/boost/stage/lib:${DYLD_LIBRARY_PATH}
export DYLD_LIBRARY_PATH
export LD_LIBRARY_PATH=/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib:$LD_LIBRARY_PATH
#export DYLD_LIBRARY_PATH=/System/Library/Frameworks/Python.framework/Versions/Current:$DYLD_LIBRARY_PATH
# Finished adapting your PATH environment variable for use with MacPorts.
test -r @PREFIX@/bin/init.sh && . @PREFIX@/bin/init.sh
test -r /sw/bin/init.sh && . /sw/bin/init.sh
##
# Your previous /Users/jamie/.bash_profile file was backed up as /Users/jamie/.bash_profile.macports-saved_2010-11-29_at_10:51:18
##
# MacPorts Installer addition on 2010-11-29_at_10:51:18: 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.
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
##
# Your previous /Users/jamie/.bash_profile file was backed up as /Users/jamie/.bash_profile.macports-saved_2013-10-30_at_12:54:43
##
# MacPorts Installer addition on 2013-10-30_at_12:54:43: 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.
# function local_dir_and_within {
# __LAST="${PWD##*/}"
# __IN="${PWD%/*}"
# __IN="${__IN/#$HOME/~}"
# TITLE_TAB="$__LAST"
# echo -n $TITLE_TAB
# }
# export PROMPT_COMMAND='echo -ne "\033]0;$(local_dir_and_within)\007"'
function set_tab_title {
echo -n -e "\033]0;${PWD##*/}\007"
}
PROMPT_COMMAND="set_tab_title;$PROMPT_COMMAND"
export PATH=/usr/local/apache-ant/bin:"$PATH"