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