+Fix $USER and $LOGNAME (not $MAIL) for /etc/passwd "root-..." lines.
[nethome.git] / .bashrc
1 # $Id$
2
3
4 if [ -n "$_home_short_dotbashrc_norc" -o "${TERM#norc-}" != "$TERM" ];then
5         # We could get executed twice:
6         export _home_short_dotbashrc_norc=true
7         # Do not use $TZ as Solaris sshd(8) does not propagate it.
8         # Be aware you must use 'ssh -t' to propagate $TERM otherwise '=dumb'.
9         export TERM="${TERM#norc-}"
10         export _home_short_dotbashrc=true
11 fi
12
13 if [ -z "$_home_short_dotbashrc" ];then
14         # We permit later reinitialization by unsetting it.
15         # During our execution we forbid spawning to prevent deadlock by:
16         #       source /etc/bashrc
17         #       . /etc/profile.d/lang.sh
18         #       unicode_start iso02.08
19         export _home_short_dotbashrc=true
20         # $TERM gets restored to its 'norc-' state after ~/.bashrc
21         # alias norc='TERM="norc-$TERM" ssh -t -o 'NoHostAuthenticationForLocalhost yes' $USER@localhost "cd $PWD; TERM=$TERM;"'
22         function norc { TERM="norc-$TERM" ssh -t -o 'NoHostAuthenticationForLocalhost yes' $USER@localhost "cd $PWD; TERM=$TERM;" "$@"; }; export -f norc
23
24 # Fix $USER and $LOGNAME (not $MAIL) for /etc/passwd line:
25 # root-lace:x:0:0:root for Jan Kratochvil:/home/root-lace:/bin/bash
26 if [ "$UID" -eq 0 -a "$USER" = "root" -a "$HOME" != "${HOME#*/root-}" ];then
27         USER="${HOME##*/}"
28         LOGNAME="$USER"
29 fi
30
31 if [ -f /etc/bashrc ];then source /etc/bashrc;fi
32
33 function _bash_profile_addpath  # <variablename>,<dirpathname>
34 {
35         local _varname _varval _varvalold _dirpathname _opt_f _opt_s
36         _opt_f=0;_opt_s=0
37         unset OPTIND
38         while getopts fs got;do
39                 case "$got" in
40                         [fs]) eval "_opt_$got=1" ;;
41                         *) return 1 ;;
42                         esac
43                 done
44         eval "_varname=\"\$$[$OPTIND+0]\""
45         eval "_dirpathname=\"\$$[$OPTIND+1]\""
46         if [ $_opt_f = 0 -a '!' -d "$_dirpathname" ];then return;fi
47         if [ $_opt_s = 1 -o -z "`eval "echo \\${$_varname}"`" ];then
48                 eval "$_varname='$_dirpathname'"
49         else
50                 # We want to override any original directories, place dirpathname first!
51                 # We want to prevent duplicates due to .bashrc reentrancy across fork(2)s.
52                 eval "_varval=\":\${$_varname}:\""
53                 until [ "$_varval" = "$_varvalold" ];do
54                         _varvalold="$_varval"
55                         eval "_varval=\"$(echo "$_varval"|sed "s#:$_dirpathname:#:#g")\""
56                 done
57                 eval "$_varname=\"$_dirpathname$(echo "$_varval"|sed "s#:\$##g")\""
58         fi
59         export "$_varname"
60 }
61
62 # Use reverse order of preferred directories:
63 # gid(1) dependency on: /opt/sfw/bin
64 # EUID="`id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null || gid -u`"
65 _bash_profile_addpath -f PATH            "/opt/SUNWspro/bin"
66 _bash_profile_addpath -f PATH            "/usr/dist/exe"
67 _bash_profile_addpath -f PATH            "/sbin"
68 _bash_profile_addpath -f PATH            "/usr/sbin"
69 _bash_profile_addpath -f PATH            "/opt/sfw/bin"
70 [ -x $HOME/bin/ProductivityTools-check ] && eval `$HOME/bin/ProductivityTools-check`
71 [ -n "$PATH_PRODUCTIVITY_TOOLS" ] && _bash_profile_addpath -f PATH "$PATH_PRODUCTIVITY_TOOLS"
72 [ $EUID -eq 0 ] && _bash_profile_addpath -f PATH "/usr/local/sbin"
73 _bash_profile_addpath -f PATH            "/usr/local/bin"
74 _bash_profile_addpath -f LD_LIBRARY_PATH "/opt/sfw/lib"
75 _bash_profile_addpath -f MANPATH         "/usr/X11R6/man"
76 _bash_profile_addpath -f MANPATH         "/usr/share/man"
77 _bash_profile_addpath -f MANPATH         "/usr/local/man"
78 _bash_profile_addpath -s JAVA_HOME       "/usr/java"
79 _bash_profile_addpath -s JAVA_HOME       "/usr/local/java"
80 uname_p="`uname -p 2>/dev/null || uname -m`"
81 [ "`uname`" = "SunOS" ] && _bash_profile_addpath -f LD_LIBRARY_PATH "$HOME/Netscape/dist/lib"
82 for family in "/net/jsc-nfs.czech.sun.com/export/jscqa-local" "$HOME";do
83         for arch in "$family" $family/$uname_p;do
84                 # Do not "-f": We use /net !
85                 _bash_profile_addpath PATH            "$arch/bin"
86                 _bash_profile_addpath PATH            "$arch/OpenOffice.org"
87                 _bash_profile_addpath PATH            "$arch/forte4j/extbin"
88                 _bash_profile_addpath -s JAVA_HOME    "$arch/java"
89                 [ $EUID -eq 0 ] && _bash_profile_addpath PATH "$arch/sbin"
90                 _bash_profile_addpath LD_LIBRARY_PATH "$arch/lib"
91                 _bash_profile_addpath MANPATH         "$arch/man"
92                 done
93         done
94 _bash_profile_addpath -f -s CVSROOT "short@vellum.cz:/home/short/pserver/cvs"   # default
95 [ -n "$JAVA_HOME" ] && _bash_profile_addpath PATH "$JAVA_HOME/bin"
96 _bash_profile_addpath    -s CVSROOT "$HOME/pserver/cvs"
97 _bash_profile_addpath    -s CVSROOT "$HOME/cvs"
98 _bash_profile_addpath    -s ANT_HOME "/usr/local/ant"
99
100 # /share/perl for Debian
101 # /lib/perl for Debian
102 # /lib/perl5 for Fedora Core
103 mkdir -p $HOME/lib/perl5        # otherwise CPAN will install to "$HOME/lib/site_perl" etc.
104 _perlpatt="$(perl -MConfig -e 'print "{,/".$Config{$_}."}" for qw(version archname);')"
105 for _perldir in $(eval "echo {/usr,$HOME}{/lib/perl5,/share/perl,/lib/perl}{,/site_perl}$_perlpatt");do
106         _bash_profile_addpath -f PERLLIB "$_perldir"
107         done
108 unset _perldir
109
110 unset -f _bash_profile_addpath
111
112 for i in tar ls find cp mv ln md5sum du grep ar chown chmod tail;do
113         # Prevent g$i from system directory overriding customized $i binary
114         which $i 2>/dev/null | grep /net/jsc-nfs.czech.sun.com/export/jscqa-local/ >/dev/null && continue
115         which g$i 2>/dev/null | grep '^/' >/dev/null && alias $i=g$i
116         done
117
118 alias ls='ls -bF'
119 alias l='ls -lbF'
120 alias maple="ssh -t vega.fjfi.cvut.cz maple"
121 #alias cc='cc -I/home/short/include'
122 alias vi='vim'
123 alias grepb='grep --binary-files=binary'
124 alias L='lynx'
125 alias cvs2cl='cvs2cl --window 3600 --separate-header --no-wrap'
126 alias cvsfiles='cvsutil --files --print'
127 alias cvsignores='cvsutil --ignores --print'
128 alias cvsignoresall='cvsutil --ignores --workings --print'
129 alias cvsignoresrm='cvsutil --ignores --rm'
130 alias cvsignoresrmall='cvsutil --ignores --workings --rm'
131 alias cvsignoresallrm='cvsutil --ignores --workings --rm'
132 [ "`uname`" = "SunOS" -a -x $HOME/bin/rpm-by-pkg ] && alias rpm='rpm-by-pkg'
133 alias rpmdb='rpm --define "_dbpath `echo /usr/lib/rpmdb/*/*`"'
134
135 # '2>/dev/null' to prevent: unalias: x: not found
136 unalias 2>/dev/null cp  # -i
137 unalias 2>/dev/null mv  # -i
138 unalias 2>/dev/null rm  # -i
139 unalias 2>/dev/null df  # -h
140 unalias 2>/dev/null du  # -h
141
142 export IGNOREEOF=10
143 # '2>/dev/null' to prevent: TMOUT: readonly variable
144 export TMOUT=900 2>/dev/null
145 export EDITOR='vim'
146 [ -x /bin/less ] && export PAGER='/bin/less -MMh5cis'
147 export PERL_MM_OPT="PERL=$HOME/bin/perlilib"
148 [ "$UID" -ne 0 ] && export PERL_MM_OPT="$PERL_MM_OPT PREFIX=$HOME"
149 for file in $HOME/.bookmarks.html;do
150         export WWW_HOME="file://$HOME/"
151         [ -r $file ] && export WWW_HOME="file://$file"
152         done
153 export GREP_OPTIONS="--binary-files=without-match --directories=skip --exclude=tags --exclude=TAGS --exclude=CVS"
154 if [ -n "$PS1" ];then   # set only in interactive sessions
155         export PS1='[bash]${LOGNAME}@${HOSTNAME}:${PWD}# '
156         export PS1='\[\017\]'"$PS1"     # \017=std charmap
157         export PS1='\[\033%G\]'"$PS1"   # \033%G=utf-8
158         # Do not: kbd_mode -u # utf-8
159         # as it breaks keyboard state in X and it is not permitted for non-root.
160         fi
161 export MINICOM="-m -c on"       # metakeys+color
162 export HISTSIZE=100000
163 export HISTFILESIZE="$HISTSIZE"
164 export CVS_RSH="ssh"
165 # Do not: grep -w "$TERM" /etc/termcap >/dev/null || export TERM=vt220
166 # as Sun workaround as Debian misses: /etc/termcap
167 # expects: $uname_p
168 [ "$TERM" = vt220 -a "${uname_p%86}" != "$uname_p" ] && export TERM=linux
169
170 export SOCKS5_SERVER=icsocks.holland.sun.com
171
172 # Force English.
173 unset LANG LANGUAGE `set|sed -n 's/^\(LC_[^=]*\)=.*$/\1/p'`
174 export LANG=en_US.UTF-8
175 # Force strcoll() to sort case-sensitively! (empty/undef doesn't work)
176 export LC_COLLATE=C
177 # Do not: # Prevent: perl: warning: Setting locale failed.
178 #         # due to LC_COLLATE=C and LC_ALL=(unset)
179 #         export LC_ALL=C
180 # as it breaks Mutt "utf-8" and somehow it is no longer needed.
181
182 function cvsdiff    { cvs diff   "$@" 2>&1|pipebuf -q|             less; }; export -f cvsdiff
183 function cvsdiffi   { cvs diff   "$@" 2>&1|pipebuf -q|grep -v '^?'|less; }; export -f cvsdiffi
184 function cvsupdate  { cvs update "$@" 2>&1|pipebuf -q|             less; }; export -f cvsupdate
185 function cvsupdatei { cvs update "$@" 2>&1|pipebuf -q|grep -v '^?'|less; }; export -f cvsupdatei
186
187 function wclines { awk '{x[$0]++}END{for (i in x) print x[i]"\t"i}'; }; export -f wclines
188 # SunOS does not support "-m"
189 export ULIMITME_OPTS=""
190 for i in "-m 100000" "-d 150000" "-v 200000";do
191         (ulimit $i 2>/dev/null) && ULIMITME_OPTS="$ULIMITME_OPTS $i"
192         done
193 # Prevent: ulimit:  -m 100000 -d 150000 -v 200000: invalid number
194 # by forcing our known $IFS value; eval(1) is needed to take $IFS to effect:
195 function ulimitme { IFS=" " eval "ulimit $ULIMITME_OPTS"; }; export -f ulimitme
196 function grep {(unset grep; ( ulimitme; grep "$@"; ); );}; export -f grep
197 function finame { find . -false `
198         awk </dev/null 'BEGIN{ for (i=1;i<ARGC;i++) print " -o -iname *"ARGV[i]"*"; }' "$@";
199         `; }; export -f finame
200 function mkcd { mkdir -p "$1"; cd "$1"; }; export -f mkcd
201 function pushdmk { mkdir -p "$1"; pushd "$1"; }; export -f pushdmk
202 function rsync {(unset rsync; rsync -v -e ssh --progress --stats --partial --block-size=512 "$@"; );}; export -f rsync
203 function tohex { od -An -txC|tr -d '\n '|tr 'a-f' 'A-F';echo; }; export -f tohex
204 function edall {
205         find -type f|while read -r i;do
206                 (awk </dev/null 'BEGIN{ for (i=1;i<ARGC;i++) print ARGV[i]; }' "$@";echo -e 'w\nq')|ed -s "$i"
207                 done
208         }; export -f edall
209 function mi { (
210         set -ex;cd "$1";while true;do test "$PWD" != "/";if [ -e configure.in -o -e Makefile.PL ];then break;fi;cd ..;done;make install;
211         ); };export -f mi
212 function ctags {(unset ctags;
213         if [ $# -ne 0 -a '(' $# -ne 1 -o "$1" '!=' "--c-types=+px" ')' ];then ctags "$@";else
214                 find -type f -a '!' -name tags -a '!' -name TAGS -a '(' -false \
215                                                 -o -name "*.[chC]" \
216                                                 -o -name "*.cc"    \
217                                                 -o -name "*.java"  \
218                                                 -o -name "*.p[lm]" \
219                                                 ')' \
220                                 |ctags --file-tags -L - "$@"
221         fi; );}; export -f ctags
222 function ctagsh { ctags "--c-types=+px"; }; export -f ctagsh
223 function cpan {(unset cpan; if [ $# = 0 ];then cpan;else perl -MCPAN -e "install qw($*);";fi; );}; export -f cpan
224 function exx { cd "`unset exx;exx "$@"|tee /proc/self/fd/2|tail -n1|sed -n 's/^extdir=//p'`"; };export -f exx
225 function revlines { perl -e 'my @r=();push @r,$_ while (<>);print pop @r while @r;'; }; export -f revlines
226
227 ulimit -S -c 0
228 set +H
229 shopt -s mailwarn
230 unset OPTIND
231
232 if [ -f "$HOME/.bashrc.local" ];then source "$HOME/.bashrc.local";fi
233
234         unset _home_short_dotbashrc     # permit later reinitializations
235 fi      # _home_short_dotbashrc
236
237 true    # Prevent crash in '-e' mode