8207eaee0d42aa94090dc086d4a1e03131baa8ca
[clearscm.git] / rc / bash_login
1 ################################################################################
2 #
3 # File:         $RCSfile: bash_login,v $
4 # Revision:     $Revision: 1.29 $
5 # Description:  bash startup file
6 # Author:       Andrew@DeFaria.com
7 # Created:      Mon Aug 20 17:35:01  2001
8 # Modified:     $Date: 2013/06/13 14:04:55 $
9 # Language:     bash
10 #
11 # (c) Copyright 2000-2005, Andrew@DeFaria.com, all rights reserved.
12 #
13 ################################################################################
14 # The following will set HOME, temporarily, to the directory of my $HOME so that
15 # somebody other than me can envoke my startup scripts. I use this mainly for
16 # when I become root with sudo -s and what a better environment that the bare
17 # bones root environment gives you. Note that for us to be effective one must
18 # source (or .) this file and if so the ${BASH_ARGV[0]} is the normal $0
19 if [ -n "${BASH_ARGV[0]}" ]; then
20   home=$(dirname ${BASH_ARGV[0]})
21 else
22   home=$HOME
23 fi
24
25 # Strip off .rc
26 home=${home/%\/\.rc/}
27
28 # Now set $HOME if $home is different.
29 saved_home=$HOME
30 if [ "$HOME" != "$home" ]; then
31   HOME=$home
32 fi
33
34 # Set ARCHITECTURE of the machine
35 KERNEL=$(uname -s)
36 if [[ $KERNEL = CYGWIN* ]]; then
37   export ARCHITECTURE=cygwin
38 elif [ $KERNEL = "Linux" ]; then
39   export ARCHITECTURE=linux
40 elif [ $KERNEL = "SunOS" ]; then
41   export ARCHITECTURE=sun
42 elif [ $KERNEL = "FreeBSD" ]; then
43   export ARCHITECTURE=$KERNEL
44 elif [ $KERNEL = "Darwin" ]; then
45   export ARCHITECTURE=$KERNEL
46 else
47   export ARCHITECTURE=''
48   echo "Warning: Unknown architecture ($KERNEL)"
49 fi
50
51 # Hack: Just set TERM to xterm
52 if [ $ARCHITECTURE = 'sun' ]; then
53   id=/usr/xpg4/bin/id
54   tr=/usr/xpg4/bin/tr
55   TERM=xtermc
56 else
57   id=id
58   tr=tr
59   if [ $ARCHITECTURE = 'cygwin' ]; then
60     TERM=cygwin
61   else
62     TERM=xterm
63   fi
64 fi
65
66 # Set colors
67 if [ -f "$HOME/.rc/set_colors" ]; then
68    source "$HOME/.rc/set_colors"
69 else
70   echo "Warning: ~/.rc/set_colors does not exist!"
71 fi
72
73 # Check to see if we're interactive
74 if [[ $- = *i* ]]; then
75   export interactive=true
76 else
77   export interactive=false
78 fi
79
80 export VISUAL=vi
81
82 # Terminal settings:
83 if [ "$TERM" = ""        -o \
84      "$TERM" = "unknown" -o \
85      "$TERM" = "dialup"  -o \
86      "$TERM" = "network" ]; then
87   if [ "$interactive" = "true" ]; then
88     eval $(ttytype -s -a -t ansi -t hp)
89   fi
90 fi
91
92 # System dependent variables.
93 if [ -f "$HOME/.rc/system" ]; then
94    source "$HOME/.rc/system"
95 else
96    echo "Warning ~/.rc/system does not exist!"
97    export SYSNAME="*Unknown Systemname*:"
98 fi
99
100 umask 002
101
102 if [ "$interactive" = "true" ]; then
103   stty tostop intr ^C kill ^X susp ^Z erase ^H -inpck -istrip -ixany -echok -echonl
104 fi
105
106 # Set adm_base
107 adm_base=${adm_base:-/opt/clearscm}
108
109 # Set adm_fpath
110 adm_fpath=${adm_fpath:-$adm_base/functions}
111
112 # Source functions
113 if [ -f "$adm_fpath/common" ]; then
114   source "$adm_fpath/common"
115 else
116   : echo "Warning: Cannot find $adm_fpath/common!"
117 fi
118
119 # Source bash_completion (if present) (too slow for Windows)
120 if [ -r /etc/bash_completion -a $ARCHITECTURE != "cygwin" ]; then
121   source /etc/bash_completion
122 fi
123
124 if [ -x ~/.rc/logout ]; then
125   trap "~/.rc/logout" 0
126 fi
127
128 # ClearCase Stuff
129 if [ -f ~/.rc/clearcase ]; then
130   source ~/.rc/clearcase
131 fi
132
133 # MultiSite Stuff
134 if [ -f ~/.rc/multisite ]; then
135   source ~/.rc/multisite
136 fi
137
138 # Git Stuff
139 if [ -f ~/.rc/git ]; then
140   source ~/.rc/git
141 fi
142
143 # Import shell functions:
144 if [ -f ~/.rc/functions ]; then
145   source ~/.rc/functions
146 fi
147
148 # Other settings:
149 set -o emacs
150 set -o monitor
151 set +u
152
153 # Shell options
154 if [ $ARCHITECTURE != 'Darwin' -a $ARCHITECTURE != 'sun' ]; then
155   ls /etc/*release > /dev/null 2>&1
156
157   if [ $? = 0 ]; then
158     if ! grep -qP '5\.(6|7|8|9|10)' /etc/*release; then
159       shopt -s autocd   > /dev/null 2>&1
160       shopt -s dirspell > /dev/null 2>&1
161     fi
162   fi
163 fi
164
165 shopt -s cdspell
166 shopt -s histappend
167 shopt -s lithist
168
169 # Aliases:
170 if [ $ARCHITECTURE = "FreeBSD" -o $ARCHITECTURE = "Darwin" ]; then
171   alias ls="ls -FG"
172 else
173   if [ -f ~/.rc/dircolors ]; then
174     if type -p dircolors > /dev/null; then
175       eval $(dircolors -b ~/.rc/dircolors)
176     fi
177   fi
178
179   if [ $ARCHITECTURE = "sun" ]; then
180     # Ugh! --color doesn't work on braindead SUN
181     alias ls="ls -F"
182   else
183     alias ls="ls -F --color=auto"
184   fi
185 fi
186
187 alias ll="ls -la"
188 alias whence="type -p"
189 alias mroe=more
190
191 if [ $ARCHITECTURE = "cygwin" ]; then
192   alias host=nslookup
193 fi
194
195 if [ -f "$SYSTEMDRIVE/Perl64/bin/perl" ]; then
196   alias asperl="$SYSTEMDRIVE/Perl64/bin/perl"
197 fi
198
199 if [ -f "$SYSTEMDRIVE/Perl/bin/perl" ]; then
200   alias asperl="$SYSTEMDRIVE/Perl64/bin/perl"
201 fi
202
203 if [ $(locale -a | grep -c en_US.utf8) != 0 ]; then
204   export LANG=en_US.utf8
205 else
206   export LANG=C
207 fi
208
209 if [ "$(type -p vim)" ]; then
210   alias vi=vim
211 fi
212
213 if [ "$(type -p ncftp)" ]; then
214   alias ftp=ncftp
215   alias ftpput=ncftpput
216   alias ftpget=ncftpget
217 fi
218
219 #alias grep="grep -d skip"
220
221 if [ "$TERM" = "hpterm"         -o \
222      "$TERM" = "hp"             -o \
223      "$TERM" = "dtterm"         -o \
224      "$TERM" = "sun-color"      -o \
225      "$TERM" = "vt100"          -o \
226      "$TERM" = "vt220"          -o \
227      "$TERM" = "xtermc"         -o \
228      "$TERM" = "xterm"          -o \
229      "$TERM" = "xterm-256color" -o \
230      "$TERM" = "cygwin" ]; then
231   alias cd=mycd
232   alias pushd=mypushd
233   alias popd=mypopd
234 fi
235
236 # Miscellaneous:
237 if [ -x $(type -p less) ]; then
238    export LESS=eiXP"?f%f :[stdin] .?pt(%pt\%):?bt(%bt bytes):-.."
239    alias more="less -sr"
240    export PAGER="less -sr"
241 else 
242    export MORE=-s
243    export PAGER=more
244 fi
245
246 export PS4='${0##*/} line $LINENO:'
247
248 set_title
249 set_prompt
250
251 if [ "$TERM" = "dtterm" ]; then
252   export TERM=vt100
253   export DTTERM=True
254 fi
255
256 # Set mail
257 export MAIL=/var/mail/$USER
258
259 # Perl Environment                                                              
260 export PERLCRITIC=~/.rc/perlcriticrc                                            
261 export PERLTIDY=~/.rc/perltidyrc                                                
262
263 # CDPATH
264 export CDPATH="."
265
266 alias vbs="cscript //nologo"
267
268 # Set PATH
269 if [ -f ~/.rc/set_path ]; then
270   source ~/.rc/set_path
271 else
272   echo "Warning: ~/.rc/set_path does not exist!"
273 fi
274
275 # Color man pages with yellow keywords
276 export LESS_TERMCAP_md=$'\e[1;33m'
277
278 # If /opt/clearscm/lib is around then set PERL5LIB
279 if [ -d /opt/clearscm/lib ]; then
280   export PERL5LIB="$PERL5LIB:/opt/clearscm/lib"
281 fi
282
283 # Lessfile
284 if type lessfile > /dev/null 2>&1; then
285   eval $(lessfile)
286 fi
287
288 # Client specific customizations
289 for script in $(\ls ~/.rc/client_scripts); do
290   # This is not working as long as ACLs are not supported from the remote
291   # NetApp. This happens at some clients where the home directory is on a
292   # Netapp and they do not support NTFS ACLs properly. We cannot determine
293   # if the script is executable.
294   #if [ ! -d ~/.rc/client_scripts/$script ]; then
295   if [ -x ~/.rc/client_scripts/$script -a \
296      ! -d ~/.rc/client_scripts/$script ]; then
297     source ~/.rc/client_scripts/$script
298   fi
299 done
300
301 # Set display to local
302
303 export DISPLAY=${DISPLAY:-:0}
304 # Reset home in case it changed
305 HOME=$saved_home
306
307 # Odd but Eclipse's Egit can't seem to work with defaria.com unless this is set.
308 export GIT_SSH=/usr/bin/ssh
309
310 # Now go home (in case we were not autmatically cd'ed there)
311 if [ $($id -u) -ne 0 ]; then
312   cd
313 fi