Some cosmetic edits
[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 # We specify /home/$USER here so that when we sudo to another user 
125 # we will only trap logout if that user also has a ~/.rc/logout
126 # (doubtfull).
127 if [ -x /home/$USER/.rc/logout ]; then
128   trap "/home/$USER/.rc/logout" 0
129 fi
130
131 # ClearCase Stuff
132 if [ -f ~/.rc/clearcase ]; then
133   source ~/.rc/clearcase
134 fi
135
136 # MultiSite Stuff
137 if [ -f ~/.rc/multisite ]; then
138   source ~/.rc/multisite
139 fi
140
141 # Git Stuff
142 if [ -f ~/.rc/git ]; then
143   source ~/.rc/git
144 fi
145
146 # Import shell functions:
147 if [ -f ~/.rc/functions ]; then
148   source ~/.rc/functions
149 fi
150
151 # Other settings:
152 set -o emacs
153 set -o monitor
154 set +u
155
156 # Shell options
157 if [ $ARCHITECTURE != 'Darwin' -a $ARCHITECTURE != 'sun' ]; then
158   ls /etc/*release > /dev/null 2>&1
159
160   if [ $? = 0 ]; then
161     if ! grep -qP '5\.(6|7|8|9|10)' /etc/*release; then
162       shopt -s autocd   > /dev/null 2>&1
163       shopt -s dirspell > /dev/null 2>&1
164     fi
165   fi
166 fi
167
168 shopt -s cdspell
169 shopt -s histappend
170 shopt -s lithist
171
172 # Aliases:
173 if [ $ARCHITECTURE = "FreeBSD" -o $ARCHITECTURE = "Darwin" ]; then
174   alias ls="ls -FG"
175 else
176   if [ -f ~/.rc/dircolors ]; then
177     if type -p dircolors > /dev/null; then
178       eval $(dircolors -b ~/.rc/dircolors)
179     fi
180   fi
181
182   if [ $ARCHITECTURE = "sun" ]; then
183     # Ugh! --color doesn't work on braindead SUN
184     alias ls="ls -F"
185   else
186     alias ls="ls -F --color=auto"
187   fi
188 fi
189
190 alias ll="ls -la"
191 alias whence="type -p"
192 alias mroe=more
193
194 if [ $ARCHITECTURE = "cygwin" ]; then
195   alias host=nslookup
196 fi
197
198 if [ -f "$SYSTEMDRIVE/Perl64/bin/perl" ]; then
199   alias asperl="$SYSTEMDRIVE/Perl64/bin/perl"
200 fi
201
202 if [ -f "$SYSTEMDRIVE/Perl/bin/perl" ]; then
203   alias asperl="$SYSTEMDRIVE/Perl64/bin/perl"
204 fi
205
206 if [ $(locale -a | grep -c en_US.utf8) != 0 ]; then
207   export LANG=en_US.utf8
208 else
209   export LANG=C
210 fi
211
212 if [ "$(type -p vim)" ]; then
213   alias vi=vim
214 fi
215
216 if [ "$(type -p ncftp)" ]; then
217   alias ftp=ncftp
218   alias ftpput=ncftpput
219   alias ftpget=ncftpget
220 fi
221
222 #alias grep="grep -d skip"
223
224 if [ "$TERM" = "hpterm"         -o \
225      "$TERM" = "hp"             -o \
226      "$TERM" = "dtterm"         -o \
227      "$TERM" = "sun-color"      -o \
228      "$TERM" = "vt100"          -o \
229      "$TERM" = "vt220"          -o \
230      "$TERM" = "xtermc"         -o \
231      "$TERM" = "xterm"          -o \
232      "$TERM" = "xterm-256color" -o \
233      "$TERM" = "cygwin" ]; then
234   alias cd=mycd
235   alias pushd=mypushd
236   alias popd=mypopd
237 fi
238
239 # Miscellaneous:
240 if [ -x $(type -p less) ]; then
241    export LESS=eiXP"?f%f :[stdin] .?pt(%pt\%):?bt(%bt bytes):-.."
242    alias more="less -sr"
243    export PAGER="less -sr"
244 else 
245    export MORE=-s
246    export PAGER=more
247 fi
248
249 export PS4='${0##*/} line $LINENO:'
250
251 set_title
252 set_prompt
253
254 if [ "$TERM" = "dtterm" ]; then
255   export TERM=vt100
256   export DTTERM=True
257 fi
258
259 # Set mail
260 export MAIL=/var/mail/$USER
261
262 # Perl Environment                                                              
263 export PERLCRITIC=~/.rc/perlcriticrc                                            
264 export PERLTIDY=~/.rc/perltidyrc                                                
265
266 # CDPATH
267 export CDPATH="."
268
269 alias vbs="cscript //nologo"
270
271 # Set PATH
272 if [ -f ~/.rc/set_path ]; then
273   source ~/.rc/set_path
274 else
275   echo "Warning: ~/.rc/set_path does not exist!"
276 fi
277
278 # Color man pages with yellow keywords
279 export LESS_TERMCAP_md=$'\e[1;33m'
280
281 # If /opt/clearscm/lib is around then set PERL5LIB
282 if [ -d /opt/clearscm/lib ]; then
283   export PERL5LIB="$PERL5LIB:/opt/clearscm/lib"
284 fi
285
286 # Lessfile
287 if type lessfile > /dev/null 2>&1; then
288   eval $(lessfile)
289 fi
290
291 # Client specific customizations
292 for script in $(\ls ~/.rc/client_scripts); do
293   # This is not working as long as ACLs are not supported from the remote
294   # NetApp. This happens at some clients where the home directory is on a
295   # Netapp and they do not support NTFS ACLs properly. We cannot determine
296   # if the script is executable.
297   #if [ ! -d ~/.rc/client_scripts/$script ]; then
298   if [ -x ~/.rc/client_scripts/$script -a \
299      ! -d ~/.rc/client_scripts/$script ]; then
300     source ~/.rc/client_scripts/$script
301   fi
302 done
303
304 # Set display to local
305
306 export DISPLAY=${DISPLAY:-:0}
307 # Reset home in case it changed
308 HOME=$saved_home
309
310 # Odd but Eclipse's Egit can't seem to work with defaria.com unless this is set.
311 export GIT_SSH=/usr/bin/ssh
312
313 # Now go home (in case we were not autmatically cd'ed there)
314 if [ $($id -u) -ne 0 ]; then
315   cd
316 fi