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