Merge branch 'master' of defaria.com:/opt/git/clearscm
[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 # Set ARCHITECTURE of the machine
15 KERNEL=$(uname -s)
16 if [[ $KERNEL = CYGWIN* ]]; then
17   export ARCHITECTURE=cygwin
18 elif [ $KERNEL = "Linux" ]; then
19   export ARCHITECTURE=linux
20 elif [ $KERNEL = "SunOS" ]; then
21   export ARCHITECTURE=sun
22 elif [ $KERNEL = "FreeBSD" ]; then
23   export ARCHITECTURE=$KERNEL
24 else
25   export ARCHITECTURE=''
26   echo "Warning: Unknown architecture ($KERNEL)"
27 fi
28
29 # Architectual differences (AKA Silly Sun)
30 if [ $ARCHITECTURE = "sun" ]; then
31   alias id=/usr/xpg4/bin/id
32   alias tr=/usr/xpg4/bin/tr
33   
34   export id=/usr/xpg4/bin/id
35 fi
36
37 # Set colors
38 if [ -f "$HOME/.rc/set_colors" ]; then
39    source "$HOME/.rc/set_colors"
40 else
41   echo "Warning: ~/.rc/set_colors does not exist!"
42 fi
43
44 # Check to see if we're interactive
45 if [[ $- = *i* ]]; then
46   export interactive=true
47 else
48   export interactive=false
49 fi
50
51 export VISUAL=vi
52
53 # Terminal settings:
54 if [ "$TERM" = ""        -o \
55      "$TERM" = "unknown" -o \
56      "$TERM" = "dialup"  -o \
57      "$TERM" = "network" ]; then
58   if [ "$interactive" = "true" ]; then
59     eval $(ttytype -s -a -t ansi -t hp)
60   fi
61 fi
62
63 # System dependent variables.
64 if [ -f "$HOME/.rc/system" ]; then
65    source "$HOME/.rc/system"
66 else
67    echo "Warning ~/.rc/system does not exist!"
68    export SYSNAME="*Unknown Systemname*:"
69 fi
70
71 # System dependencies
72 # Note: I don't like doing this but an alias doesn't work...
73 if [ $ARCHITECTURE = "sun" ]; then
74   id=/usr/xpg4/bin/id
75 else
76   id=id
77 fi
78
79 umask 002
80
81 if [ "$interactive" = "true" ]; then
82   stty tostop intr ^C kill ^X susp ^Z erase ^H -inpck -istrip -ixany -echok -echonl
83 fi
84
85 # Set adm_base
86 adm_base=${adm_base:-/opt/clearscm}
87
88 # Set adm_fpath
89 adm_fpath=${adm_fpath:-$adm_base/functions}
90
91 # Source functions
92 if [ -f "$adm_fpath/common" ]; then
93   source "$adm_fpath/common"
94 else
95   : echo "Warning: Cannot find $adm_fpath/common!"
96 fi
97
98 # Source bash_completion (if present) (too slow for Windows)
99 if [ -r /etc/bash_completion -a $ARCHITECTURE != "cygwin" ]; then
100   source /etc/bash_completion
101 fi
102
103 if [ -x ~/.rc/logout ]; then
104   trap "~/.rc/logout" 0
105 fi
106
107 # ClearCase Stuff
108 if [ -f ~/.rc/clearcase ]; then
109   source ~/.rc/clearcase
110 fi
111
112 # MultiSite Stuff
113 if [ -f ~/.rc/multisite ]; then
114   source ~/.rc/multisite
115 fi
116
117 # Git Stuff
118 if [ -f ~/.rc/git ]; then
119   source ~/.rc/git
120 fi
121
122 # Import shell functions:
123 if [ -f ~/.rc/functions ]; then
124   source ~/.rc/functions
125 fi
126
127 # Other settings:
128 set -o emacs
129 set -o monitor
130 set +u
131
132 shopt -s lithist
133
134 # Aliases:
135 if [ $ARCHITECTURE = "FreeBSD" ]; then
136   alias ls="ls -FG"
137 else
138   if [ -f ~/.rc/dircolors ]; then
139     if type -p dircolors > /dev/null; then
140       eval $(dircolors -b ~/.rc/dircolors)
141     fi
142   fi
143
144   if [ $ARCHITECTURE = "sun" ]; then
145     # Ugh! --color doesn't work on braindead SUN
146     alias ls="ls -F"
147   else        
148     alias ls="ls -F --color=auto"
149   fi
150 fi
151
152 alias ll="ls -la"
153 alias whence="type -p"
154 alias mroe=more
155
156 if [ $ARCHITECTURE = "cygwin" ]; then
157   alias host=nslookup
158 fi
159
160 if [ -f "$SYSTEMDRIVE/Perl64/bin/perl" ]; then
161   alias asperl="$SYSTEMDRIVE/Perl64/bin/perl"
162 fi
163
164 if [ -f "$SYSTEMDRIVE/Perl/bin/perl" ]; then
165   alias asperl="$SYSTEMDRIVE/Perl64/bin/perl"
166 fi
167   
168 export LANG=C
169
170 if [ $(type -p vim) ]; then
171   alias vi=vim
172 fi
173
174 if [ $(type -p ncftp) ]; then
175   alias ftp=ncftp
176   alias ftpput=ncftpput
177   alias ftpget=ncftpget
178 fi
179
180 #alias grep="grep -d skip"
181
182 if [ "$TERM" = "hpterm"    -o \
183      "$TERM" = "hp"        -o \
184      "$TERM" = "dtterm"    -o \
185      "$TERM" = "sun-color" -o \
186      "$TERM" = "vt100"     -o \
187      "$TERM" = "vt220"     -o \
188      "$TERM" = "xterm"     -o \
189      "$TERM" = "cygwin" ]; then
190   alias cd=mycd
191   alias pushd=mypushd
192   alias popd=mypopd
193 fi
194
195 # Miscellaneous:
196 if [ -x $(type -p less) ]; then
197    export LESS=eiXP"?f%f :[stdin] .?pt(%pt\%):?bt(%bt bytes):-.."
198    alias more="less -sr"
199    export PAGER="less -sr"
200 else 
201    export MORE=-s
202    export PAGER=more
203 fi
204
205 export PS4='${0##*/} line $LINENO:'
206
207 set_title
208 set_prompt
209
210 if [ "$TERM" = "dtterm" ]; then
211   export TERM=vt100
212   export DTTERM=True
213 fi
214
215 # Set mail
216 export MAIL=/var/mail/$USER
217
218 # Perl Environment                                                              
219 export PERLCRITIC=~/.rc/perlcriticrc                                            
220 export PERLTIDY=~/.rc/perltidyrc                                                
221
222 # CDPATH
223 export CDPATH="."
224
225 alias vbs="cscript //nologo"
226
227 # Set PATH
228 if [ -f ~/.rc/set_path ]; then
229   source ~/.rc/set_path
230 else
231   echo "Warning: ~/.rc/set_path does not exist!"
232 fi
233
234 # Color man pages with yellow keywords
235 export LESS_TERMCAP_md=$'\e[1;33m'
236
237 # If /opt/clearscm/lib is around then set PERL5LIB
238 if [ -d /opt/clearscm/lib ]; then
239   export PERL5LIB="$PERL5LIB:/opt/clearscm/lib"
240 fi
241
242 # Client specific customizations
243 for script in $(\ls ~/.rc/client_scripts); do
244   # This is not working as long as ACLs are not supported from the remote
245   # NetApp. This happens at some clients where the home directory is on a
246   # Netapp and they do not support NTFS ACLs properly. We cannot determine
247   # if the script is executable.
248   #if [ ! -d ~/.rc/client_scripts/$script ]; then
249   if [ -x ~/.rc/client_scripts/$script -a \
250      ! -d ~/.rc/client_scripts/$script ]; then
251     source ~/.rc/client_scripts/$script
252   fi
253 done
254
255 # Set display to local
256 export DISPLAY=${DISPLAY:-:0}
257
258 # Now go home (in case we were not autmatically cd'ed there)
259 if [ $(id -u) -ne 0 ]; then
260   cd
261 fi