+function binutilscvscheckout
[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 # "$PS1" for interactive shells detection.
14 if [ -n "$PS1" -a -z "$_home_short_dotbashrc" ];then
15         # We permit later reinitialization by unsetting it.
16         # During our execution we forbid spawning to prevent deadlock by:
17         #       source /etc/bashrc
18         #       . /etc/profile.d/lang.sh
19         #       unicode_start iso02.08
20         export _home_short_dotbashrc=true
21         # $TERM gets restored to its 'norc-' state after ~/.bashrc
22         # alias norc='TERM="norc-$TERM" ssh -t -o 'NoHostAuthenticationForLocalhost yes' $USER@localhost "cd $PWD; TERM=$TERM;"'
23         function norc { TERM="norc-$TERM" ssh -t -o 'NoHostAuthenticationForLocalhost yes' $USER@localhost "cd $PWD; TERM=$TERM;" "$@"; }
24
25 # Fix $USER and $LOGNAME (not $MAIL) for /etc/passwd line:
26 # root-lace:x:0:0:root for Jan Kratochvil:/home/root-lace:/bin/bash
27 if [ "$UID" -eq 0 -a "$USER" = "root" -a "$HOME" != "${HOME#*/root-}" ];then
28         USER="${HOME##*/}"
29         LOGNAME="$USER"
30 fi
31
32 if [ -f /etc/bashrc ];then source /etc/bashrc;fi
33
34 _bash_profile_addpath_fini=""
35 function _bash_profile_addpath  # <variablename>,<dirpathname>
36 {
37         local _varname _varval _varvalold _dirpathname _opt_f _opt_s
38         _opt_f=0;_opt_s=0
39         unset -v OPTIND
40         while getopts fs got;do
41                 case "$got" in
42                         [fs]) eval "_opt_$got=1" ;;
43                         *) return 1 ;;
44                         esac
45                 done
46         eval "_varname=\"\$$[$OPTIND+0]\""
47         eval "_dirpathname=\"\$$[$OPTIND+1]\""
48         if [ $_opt_f = 0 -a '!' -d "$_dirpathname" ];then return;fi
49         if [ $_opt_s = 1 -o -z "`eval "echo \\${$_varname}"`" ];then
50                 eval "$_varname='$_dirpathname'"
51         else
52                 # We want to prevent duplicates due to .bashrc reentrancy across fork(2)s. It is array!
53                 _bash_profile_addpath_fini="$_bash_profile_addpath_fini $_varname"
54                 # We want to override any original directories, place dirpathname first!
55                 eval "$_varname=\"$_dirpathname:\${$_varname}\""
56         fi
57         export "$_varname"
58 }
59 function _bash_profile_addpath_fini
60 {
61         local _varname
62         for _varname in `echo "$_bash_profile_addpath_fini"|tr ' ' '\n'|sort -u`;do
63                 eval "$_varname=\"`eval $(echo "echo \"\\$$_varname\"")|awk -v RS=':' '/[^\n]/{if (!x[$0]++) e=e":"$0;}END{print substr(e,2)}'`\""
64                 done
65         unset -v _bash_profile_addpath_fini
66 }
67
68 # Use reverse order of preferred directories:
69 # gid(1) dependency on: /opt/sfw/bin
70 # EUID="`id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null || gid -u`"
71 _bash_profile_addpath -f PATH            "/sbin"
72 _bash_profile_addpath -f PATH            "/usr/sbin"
73 [ $EUID -eq 0 ] && _bash_profile_addpath -f PATH "/usr/local/sbin"
74 _bash_profile_addpath -f PATH            "/usr/local/bin"
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 for family in $HOME;do
82         for arch in $family $family/$uname_p;do
83                 # Do not "-f": We use /net !
84                 _bash_profile_addpath PATH            "$arch/bin"
85                 _bash_profile_addpath -s JAVA_HOME    "$arch/java"
86                 [ $EUID -eq 0 ] && _bash_profile_addpath PATH "$arch/sbin"
87                 _bash_profile_addpath LD_LIBRARY_PATH "$arch/lib64"
88                 _bash_profile_addpath LD_LIBRARY_PATH "$arch/lib"
89                 _bash_profile_addpath MANPATH         "$arch/man"
90                 done
91         done
92 _bash_profile_addpath -f -s CVSROOT ":pserver:pserver:@cvs.jankratochvil.net/cvs"       # default
93 [ -n "$JAVA_HOME" ] && _bash_profile_addpath PATH "$JAVA_HOME/bin"
94 _bash_profile_addpath    -s CVSROOT "$HOME/pserver/cvs"
95 _bash_profile_addpath    -s CVSROOT "$HOME/cvs"
96 _bash_profile_addpath    -s ANT_HOME "/usr/local/ant"
97
98 # /share/perl for Debian
99 # /lib/perl for Debian
100 # /lib/perl5 for Fedora Core
101 mkdir -p $HOME/lib{64,}/perl5   # otherwise CPAN will install to "$HOME/lib{64,}/site_perl" etc.
102 _perlpatt="$(perl -MConfig -e 'print "{,/".$Config{$_}."}" for qw(version archname);')"
103 for _perldir in $(eval "echo {/usr,$HOME}{/lib{64,}/perl{,5},/share/perl}{,/site_perl}$_perlpatt");do
104         # $PERL5LIB overrides $PERLLIB and it is being used by: /etc/profile.d/atrpms.*
105         _bash_profile_addpath -f PERL5LIB "$_perldir"
106         done
107 unset _perldir
108
109 unset -f _bash_profile_addpath
110 _bash_profile_addpath_fini
111 unset -f _bash_profile_addpath_fini
112
113 # '2>/dev/null' to prevent: unalias: x: not found
114 # It must be run before `function's below as otherwise it would get embedded.
115 unalias 2>/dev/null cp  # -i
116 unalias 2>/dev/null mv  # -i
117 unalias 2>/dev/null rm  # -i
118 unalias 2>/dev/null df  # -h
119 unalias 2>/dev/null du  # -h
120 unalias 2>/dev/null ls  # --color=auto
121 unalias 2>/dev/null l.  # ls -d .* --color=auto
122 unalias 2>/dev/null ll  # ls -l --color=auto
123
124 # Aliases would get processed during the parsing of this script file!
125 eval '
126         function grep {(unset grep; ( ulimitme; grep "$@"; ); );}
127
128         function ls {(unset ls; ( ls -bF "$@"; ); );}
129         function l { ls -lbF "$@"; }
130         if which vim &>/dev/null;then
131                 alias vi="vim"
132         else
133                 echo >&2 "WARNING: No vim(1)."
134         fi
135         function grepb { grep --binary-files=binary "$@"; }
136         function L { lynx "$@"; }
137         function chown {(unset chown; ( chown --no-dereference "$@"; ); );}
138         function chgrp {(unset chgrp; ( chgrp --no-dereference "$@"; ); );}
139         function hexedit {(unset hexedit; ( hexedit -s "$@"; ); );}
140         function cvs2cl {(unset cvs2cl; ( cvs2cl --window 3600 --separate-header --no-wrap "$@"; ); );}
141         function cvsfiles { cvsutil --files --print "$@"; }
142         function cvsignores { cvsutil --ignores --print "$@"; }
143         function cvsignoresall { cvsutil --ignores --workings --print "$@"; }
144         function cvsignoresrm { cvsutil --ignores --rm "$@"; }
145         function cvsignoresrmall { cvsutil --ignores --workings --rm "$@"; }
146         function cvsignoresallrm { cvsutil --ignores --workings --rm "$@"; }
147         function svnignoresall { svn status |sed -n "s/^[?]      //p" "$@"; }
148         function svnignoresallrm { svn status |sed -n "s/^[?]      //p"|tr "\n" "\0"|xargs -0 rm -rf "$@"; }
149         function ignores { find -name "*.orig" -o -name ".#*" -o -name "*~" "$@"; }
150         function ignoresrm { ignores "$@" | xargs rm -f; }
151         function ignoresall { ignores -o -name "*.rej" "$@"; }
152         function ignoresallrm { ignoresall "$@" | xargs rm -f; }
153         function disass { objdump -D --target=binary --architecture=i386 "$@"; }
154         function cal {(unset cal; ( cal -m "$@"; ); );}
155         function vncreadonly { vncviewer -FullColor -Shared -ViewOnly "$@"; }
156         function diff {(unset diff; ( diff -up "$@"; ); );}
157         function rpmbuildlocal { nice rpmbuild --define "_topdir $PWD" --define "_builddir $PWD" --define "_rpmdir $PWD" --define "_sourcedir $PWD" --define "_specdir $PWD" --define "_srcrpmdir $PWD" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" "$@"; rmdir &>/dev/null BUILDROOT; }
158         function gdbn { gdb -nx --command=~/.gdbinit "$@"; }
159         function hd { od -Ax -tx1; }
160         function wget {(unset wget; ( wget --no-check-certificate "$@"; ); );}
161 '
162
163 export IGNOREEOF=10
164 # '2>/dev/null' to prevent: TMOUT: readonly variable
165 [ -n "$SSH_TTY" ] && export TMOUT=900 2>/dev/null
166 export EDITOR='vim'
167 [ -x /bin/less ] && export PAGER='/bin/less -MMh5cis'
168 export PERL_MM_OPT="PERL=$HOME/bin/perlilib"
169 [ "$UID" -ne 0 ] && export PERL_MM_OPT="$PERL_MM_OPT PREFIX=$HOME"
170 for file in $HOME/.bookmarks.html;do
171         export WWW_HOME="file://$HOME/"
172         [ -r $file ] && export WWW_HOME="file://$file"
173         done
174 export GREP_OPTIONS="--binary-files=without-match --directories=skip"
175 if echo x|GREP_OPTIONS="--exclude=y" grep -q x 2>/dev/null;then
176         export GREP_OPTIONS="$GREP_OPTIONS --exclude=tags --exclude=TAGS --exclude=CVS --exclude=ChangeLog* --exclude=*.svn-base --exclude=*~"
177         # FIXME: grep(1) ignores subdirectories for --exclude.
178         #export GREP_OPTIONS="$GREP_OPTIONS --exclude=testsuite --exclude=.pc --exclude=.svn"
179 fi
180 if [ -n "$PS1" ];then   # set only in interactive sessions
181         export PS1='[bash]${LOGNAME}@${HOSTNAME}:${PWD}# '
182         export PS1='\[\017\]'"$PS1"     # \017=std charmap
183         export PS1='\[\033%G\]'"$PS1"   # \033%G=utf-8
184         # Do not: kbd_mode -u # utf-8
185         # as it breaks keyboard state in X and it is not permitted for non-root.
186         fi
187 export MINICOM="-m -c on"       # metakeys+color
188 export HISTSIZE=100000
189 export HISTFILESIZE="$HISTSIZE"
190 export GDBHISTFILE="$HOME/.gdb_history"
191 export CVS_RSH="ssh"
192 export TZ=":/usr/share/zoneinfo/Europe/Prague"
193 MAKEFLAGS=
194 cpus="`getconf _NPROCESSORS_ONLN`"
195 if [ -n "$cpus" ];then
196         MAKEFLAGS="$MAKEFLAGS -j$[$cpus+1]"
197 fi
198 unset cpus
199 # Do not: grep -w "$TERM" /etc/termcap >/dev/null || export TERM=vt220
200 # as Sun workaround as Debian misses: /etc/termcap
201 # expects: $uname_p
202 [ "$TERM" = vt220 -a "${uname_p%86}" != "$uname_p" ] && export TERM=linux
203 if grep 2>/dev/null -q '^..............:0C38 00000000:0000 0A ' /proc/net/tcp;then
204         export  http_proxy=http://127.0.0.1:3128/
205         export https_proxy=http://127.0.0.1:3128/
206         export   ftp_proxy=http://127.0.0.1:3128/
207 fi
208 _selfabs=
209 [ "$_selfabs" = "${_selfabs#/}" ] && _selfabs="$BASH_SOURCE"
210 [ "$_selfabs" = "${_selfabs#/}" ] && _selfabs="$PWD/.bashrc"
211 [ -r "$_selfabs" ] || unset _selfabs
212 [ -n "$_selfabs" ] && export VIMINIT="source `echo "$_selfabs"|sed 's/[.]bashrc$/.vimrc/'`"
213
214 # Force English.
215 unset LANG LANGUAGE `set|sed -n 's/^\(LC_[^=]*\)=.*$/\1/p'`
216 export LANG=en_US.UTF-8
217 # Force strcoll() to sort case-sensitively! (empty/undef doesn't work)
218 export LC_COLLATE=C
219 # Do not: # Prevent: perl: warning: Setting locale failed.
220 #         # due to LC_COLLATE=C and LC_ALL=(unset)
221 #         export LC_ALL=C
222 # as it breaks Mutt "utf-8" and somehow it is no longer needed.
223
224 function wclines { awk '{x[$0]++}END{for (i in x) print x[i]"\t"i}'; }
225 # SunOS does not support "-m"
226 export ULIMITME_OPTS=""
227 for i in "-m 100000" "-d 150000" "-v 200000";do
228         (ulimit $i 2>/dev/null) && ULIMITME_OPTS="$ULIMITME_OPTS $i"
229         done
230 # Prevent: ulimit:  -m 100000 -d 150000 -v 200000: invalid number
231 # by forcing our known $IFS value; eval(1) is needed to take $IFS to effect:
232 function ulimitme { IFS=" " eval "ulimit $ULIMITME_OPTS"; }
233 function grep {(unset grep; ( ulimitme; grep "$@"; ); );}
234 function finame { find . -false `
235         awk </dev/null 'BEGIN{ for (i=1;i<ARGC;i++) print " -o -iname *"ARGV[i]"*"; }' "$@"
236         `; }
237 function mkcd { mkdir -p "$1"; cd "$1"; }
238 function pushdmk { mkdir -p "$1"; pushd "$1"; }
239 function rsync {(unset rsync; nice -n20 rsync -v -e ssh --progress --stats --partial --rsync-path='nice -n20 rsync' "$@"; );}
240 function tohex { od -An -txC|tr -d '\n '|tr 'a-f' 'A-F';echo; }
241 function edall {
242         find -type f|while read -r i;do
243                 (awk </dev/null 'BEGIN{ for (i=1;i<ARGC;i++) print ARGV[i]; }' "$@";echo -e 'w\nq')|ed -s "$i"
244                 done
245         }
246 function mi { (
247         set -ex;cd "$1";while true;do test "$PWD" != "/";if [ -e configure.in -o -e Makefile.PL ];then break;fi;cd ..;done;make install
248         ); }
249 function ctags {(unset ctags
250         if [ $# -ne 0 -a '(' $# -ne 1 -o "$1" '!=' "--c-types=+px" ')' ];then ctags "$@";else
251                 find -name testsuite -prune -o -name .pc -prune -o -name .svn -prune -o \
252                                 -type f -a '!' -name tags -a '!' -name TAGS -a '(' -false \
253                                                 -o -name "*.[chC]" \
254                                                 -o -name "*.cc"    \
255                                                 -o -name "*.cxx"   \
256                                                 -o -name "*.java"  \
257                                                 -o -name "*.p[lm]" \
258                                                 -o -name "*.py" \
259                                                 -o -name "*.exp" \
260                                                 ')' \
261                                 |ctags --file-tags -L - --langmap=Tcl:+.exp "$@"
262         fi; );}
263 function ctagsh { ctags "--c-types=+px"; }
264 function cpan {(unset cpan; if [ $# = 0 ];then cpan;else perl -MCPAN -e "install qw($*);";fi; );}
265 function exx { cd "`unset exx;exx "$@"|tee /proc/self/fd/2|tail -n1|sed -n 's/^extdir=//p'`"; }
266 function revlines { perl -e 'print reverse <>;'; }
267 function debuginfo { if test -n "$*";then echo "$*";else cat;fi \
268         |xargs rpm -qf|xargs rpmquery --qf '%{SOURCERPM}\n'|sed 's/-[^-]*-[^-]*[.]src[.]rpm$/-debuginfo/'|sort -u; }
269 function ipcsrmall { ipcs|awk '/- Shared Memory/{x="-m"}/- Semaphore/{x="-s"}/^0x/{print "ipcrm "x" "$2}'; }
270 function eog {(unset eog; touch /tmp/eog.$$;eog "$@" {,,,,,,,,,}/tmp/eog.$$;rm -f /tmp/eog.$$; );}
271 function diffc { diff -up "$@"|grep -v '^\(Only in \|Binary files\)'; }
272 function diffi { diffc -X ~/.diffi.list "$@" | diffdecvs; }
273 function cvs {(unset cvs
274         local _opts _opts_d _now _line _o
275         _opts_d="-d"
276         if grep -iw '\(sources.redhat.com\|sourceware.org\):/cvs/src' CVS/Root &>/dev/null;then _opts_d="";fi
277         if grep '^tests/kernel/syscalls/ptrace' CVS/Repository &>/dev/null;then _opts_d="";fi
278         _now=false
279         _line=""
280         _opts=""
281         while [ $# != 0 ];do
282                 _o="$1"
283                 shift
284                 _line="$_line $_o"
285                 if [ "$_o" = "--" ] && ! $_now;then _now=true;continue;fi
286                 if [ "${_o#-}" != "$_o" ] && ! $_now;then continue;fi
287                 if [ "$_o" = update -o "$_o" = upd -o "$_o" = up ];then _opts="$_opts_d";fi
288                 break
289                 done
290         cvs $_line $_opts "$@"
291         ); }
292 function perlrpm { repoquery -q --whatprovides $(for i in "$@";do echo "perl($i)";done|sed -e 's/\//::/g' -e 's/[.]pm//g'); }
293 # `-u' limits the search to $UID.
294 function pidof
295 {(unset pidof
296   if [ "$1" = "-u" ];then
297     shift
298     local r="$(pidof "$@")"
299     local space=""
300     local p
301     for p in $r;do
302       if grep -q "$(echo -e "^Uid:\t$UID\t")" "/proc/$p/status";then
303         echo -n "${space}$p"
304         space=" "
305       fi
306     done
307     echo
308   else
309     pidof "$@"
310   fi
311 )}
312 function sumlog { find "$@" ! -name config.log -name "*.log" -o -name "*.sum"; }
313 function sourcewarecvscheckout {(set -ex
314         ! test -d src
315         ! test -d $1-cvs 
316         (set +x;cvs -z3 -d :pserver:anoncvs:@sourceware.org:/cvs/src checkout $1)
317         mv src $1-cvs
318         cd $1-cvs
319         (set +x;cvs update)
320         #(set +x;cvsignoresall)
321         (set +x;ignoresall)
322         );}
323 function gdbcvscheckout { sourcewarecvscheckout gdb; }
324 function binutilscvscheckout { sourcewarecvscheckout binutils; }
325 function gdbdevelcvscheckout {(set -ex
326         ! test -d gdb-devel
327         (set +x;CVSROOT=:pserver:anonymous@cvs.fedoraproject.org:/cvs/pkgs cvs checkout -d gdb-devel rpms/gdb/devel)
328         cd gdb-devel
329         make test-srpm
330         rm `make verrel`.src.rpm
331         );}
332 function uri_escape   { perl -MURI::Escape -le '$_=<>;chomp;print uri_escape   $_;'; };
333 function uri_unescape { perl -MURI::Escape -le '$_=<>;chomp;print uri_unescape $_;'; };
334 function n { if [ "$1" = "-p" ];then renice +19 "$@";ionice -c3 "$@";else nice -n19 ionice -c3 "$@";fi };
335 function rpmsrclist
336 {
337         if [ -z "$*" ]; then
338                 echo >&2 "rpmsrclist gcc-4.3.2-7 [4.4.0-0.25 [-|http://kojipkgs.fedoraproject.org/packages/gcc/4.4.0/0.25/]]"
339         else
340                 rpm -q --qf '%{SOURCERPM} %{name}-%{version}-%{release}.%{arch}\n' -a \
341                         | grep "^$1.src.rpm " | sed 's/^[^ ]* //' \
342                         | \
343                                 if [ -z "$2" ]; then \
344                                         cat; \
345                                 else \
346                                         sed "s/-$(echo "$1"|sed 's/^.*-\([^-]*-[^-]*\)$/\1/')/-$2/"
347                                 fi \
348                         | \
349                                 if [ -z "$3" ]; then \
350                                         cat; \
351                                 else \
352                                         if [ "$3" != - ]; then
353                                                 sed "s#.*#$3&.rpm#"; \
354                                         else \
355                                                 base="$(echo "$1"|sed 's/^\(.*\)-[^-]*-[^-]*$/\1/')"; \
356                                                 sed "s#^.*-\([^-]*\)-\([^-]*\)\.\([^.]*\)\$#http://kojipkgs.fedoraproject.org/packages/$base/\1/\2/\3/&.rpm#"; \
357                                         fi; \
358                                 fi \
359                         | sort -u
360         fi
361 }
362
363 ulimit -S -c 0
364 set +H
365 shopt -s mailwarn
366 unset OPTIND
367 umask 022
368
369 if [ -f "$HOME/.bashrc.local" ];then source "$HOME/.bashrc.local";fi
370
371 # Interactive part:
372 for key in $HOME/.ssh/id_dsa;do
373         [ -r "$key" ] || continue
374         # Do not: [ -n "$SSH_TTY" ] && continue
375         # as we may want foreign SSH keys too.
376
377         agenteval=/tmp/.$USER.ssh-agent.eval
378         if lockfile -1 -r 3 -l 10 -s 1 $agenteval.lock;then
379                 test -f $agenteval -a -O $agenteval -a -G $agenteval &&
380                                 # ">/dev/null" to prevent: echo Agent pid 31074
381                                 source $agenteval >/dev/null
382                 if [ "ssh-agent" != "`(xargs -0 </proc/"$SSH_AGENT_PID"/cmdline sh -c 'echo "$0"') 2>/dev/null `" ];then
383                         rm -f $agenteval
384                         (test ! -e $agenteval && ssh-agent -s >$agenteval) || echo >&2 'Failing ssh-agent!'
385                         # ">/dev/null" to prevent: echo Agent pid 31074
386                         source $agenteval >/dev/null
387                 fi
388                 rm -f $agenteval.lock
389         fi
390
391         # Prevent gdm(8) lockups on non-interactive consoles.
392         tty -s || continue
393         (ssh-add -l|grep -qw "$key") && continue
394         if lockfile -! -1 -r 0 $agenteval.input.lock 2>/dev/null;then
395                 echo >&2 -n "Locking: $agenteval.input.lock ... "
396                 lockfile -1 -r -1 $agenteval.input.lock
397                 echo >&2 "locked"
398         fi
399         # Recheck identity existence after the lock acquire
400         if ssh-add -l|grep -qw "$key";then
401                 echo >&2 "Identity $key already appended in the meantime."
402         else
403                 # "2>/dev/null" to prevent: Identity added: .ssh/id_dsa (.ssh/id_dsa)
404                 ssh-add "$key" 2>/dev/null
405         fi
406         rm -f $agenteval.input.lock
407         echo >&2 "$agenteval.input.lock unlocked."
408 done
409 unset agenteval
410
411         unset _home_short_dotbashrc     # permit later reinitializations
412 fi      # _home_short_dotbashrc
413
414 true    # Prevent crash in '-e' mode