comparison .bashrc @ 5:3d0de329a850

Merged in new lines for network environment at work
author huston@80426f53-59d1-405d-934b-f07cd76f4a1a
date Sat, 11 Apr 2009 21:24:58 +0000
parents 6ffd3fb73f7f
children 09e941fe3c02
comparison
equal deleted inserted replaced
4:6ffd3fb73f7f 5:3d0de329a850
78 [[ "$LD_LIBRARY_PATH" =~ "(^|:)$D/lib($|:)" ]] || \ 78 [[ "$LD_LIBRARY_PATH" =~ "(^|:)$D/lib($|:)" ]] || \
79 export LD_LIBRARY_PATH=$D/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} 79 export LD_LIBRARY_PATH=$D/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
80 fi 80 fi
81 done 81 done
82 82
83 # Add-ons for Intel compilers at work, and Condor
84 [[ -f /usr/peyton/intel/10.1/cc64/bin/iccvars.sh ]] && \
85 . /usr/peyton/intel/10.1/cc64/bin/iccvars.sh
86 [[ -f /usr/peyton/intel/10.1/fc64/bin/ifortvars.sh ]] && \
87 . /usr/peyton/intel/10.1/fc64/bin/ifortvars.sh
88 [[ -f /u/condor/condor-setup.sh ]] && \
89 . /u/condor/condor-setup.sh
90
83 # Now make sure $HOME/bin is top of the list (or at least present) 91 # Now make sure $HOME/bin is top of the list (or at least present)
84 if [ -d $HOME/bin ]; then 92 if [ -d $HOME/bin ]; then
85 [[ "$PATH" =~ "(^|:)$HOME/bin($|:)" ]] || \ 93 [[ "$PATH" =~ "(^|:)$HOME/bin($|:)" ]] || \
86 export PATH=$HOME/bin${PATH:+:$PATH} 94 export PATH=$HOME/bin${PATH:+:$PATH}
87 fi 95 fi