Merge branch 'master' of /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 export CVSROOT=:ext:andrew@clearscm.com:/var/cvs/cvsroot
104
105 if [ -x ~/.rc/logout ]; then
106   trap "~/.rc/logout" 0
107 fi
108
109 # ClearCase Stuff
110 if [ -f ~/.rc/clearcase ]; then
111   source ~/.rc/clearcase
112 fi
113
114 # MultiSite Stuff
115 if [ -f ~/.rc/multisite ]; then
116   source ~/.rc/multisite
117 fi
118
119 # Import shell functions:
120 if [ -f ~/.rc/functions ]; then
121   source ~/.rc/functions
122 fi
123
124 # Other settings:
125 set -o emacs
126 set -o monitor
127 set +u
128
129 shopt -s lithist
130
131 # Aliases:
132 if [ $ARCHITECTURE = "FreeBSD" ]; then
133   alias ls="ls -FG"
134 else
135   if [ -f ~/.rc/dircolors ]; then
136     if type -p dircolors > /dev/null; then
137       eval $(dircolors -b ~/.rc/dircolors)
138     fi
139   fi
140
141   if [ $ARCHITECTURE = "sun" ]; then
142     # Ugh! --color doesn't work on braindead SUN
143     alias ls="ls -F"
144   else
145     alias ls="ls -F --color=auto"
146   fi
147 fi
148
149 alias ll="ls -la"
150 alias whence="type -p"
151 alias mroe=more
152
153 if [ $ARCHITECTURE = "cygwin" ]; then
154   alias host=nslookup
155 fi
156
157 export LANG=C
158
159 if [ $(type -p vim) ]; then
160   alias vi=vim
161 fi
162
163 if [ $(type -p ncftp) ]; then
164   alias ftp=ncftp
165   alias ftpput=ncftpput
166   alias ftpget=ncftpget
167 fi
168
169 #alias grep="grep -d skip"
170
171 if [ "$TERM" = "hpterm"    -o \
172      "$TERM" = "hp"        -o \
173      "$TERM" = "dtterm"    -o \
174      "$TERM" = "sun-color" -o \
175      "$TERM" = "vt100"     -o \
176      "$TERM" = "vt220"     -o \
177      "$TERM" = "xterm"     -o \
178      "$TERM" = "cygwin" ]; then
179   alias cd=mycd
180   alias pushd=mypushd
181   alias popd=mypopd
182 fi
183
184 # Miscellaneous:
185 if [ -x $(type -p less) ]; then
186    export LESS=eiXP"?f%f :[stdin] .?pt(%pt\%):?bt(%bt bytes):-.."
187    alias more="less -sr"
188    export PAGER="less -sr"
189 else 
190    export MORE=-s
191    export PAGER=more
192 fi
193
194 export PS4='${0##*/} line $LINENO:'
195
196 set_title
197 set_prompt
198
199 if [ "$TERM" = "dtterm" ]; then
200   export TERM=vt100
201   export DTTERM=True
202 fi
203
204 # Set mail
205 export MAIL=/var/mail/$USER
206
207 # Perl Environment                                                              
208 export PERLCRITIC=~/.rc/perlcriticrc                                            
209 export PERLTIDY=~/.rc/perltidyrc                                                
210
211 # CDPATH
212 export CDPATH="."
213
214 alias vbs="cscript //nologo"
215
216 # Set PATH
217 if [ -f ~/.rc/set_path ]; then
218   source ~/.rc/set_path
219 else
220   echo "Warning: ~/.rc/set_path does not exist!"
221 fi
222
223 # Color man pages with yellow keywords
224 export LESS_TERMCAP_md=$'\e[1;33m'
225
226 # Client specific customizations
227 for script in $(\ls ~/.rc/client_scripts); do
228   # This is not working as long as ACLs are not supported from the remote
229   # NetApp. This happens at some clients where the home directory is on a
230   # Netapp and they do not support NTFS ACLs properly. We cannot determine
231   # if the script is executable.
232   #if [ ! -d ~/.rc/client_scripts/$script ]; then
233   if [ -x ~/.rc/client_scripts/$script -a \
234      ! -d ~/.rc/client_scripts/$script ]; then
235     source ~/.rc/client_scripts/$script
236   fi
237 done
238
239 # Set display to local
240 export DISPLAY=${DISPLAY:-:0}
241
242 # Now go home (in case we were not autmatically cd'ed there)
243 if [ $(id -u) -ne 0 ]; then
244   cd
245 fi