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