-alias rpmdb
[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 _bash_profile_addpath_fini=""
34 function _bash_profile_addpath  # <variablename>,<dirpathname>
35 {
36         local _varname _varval _varvalold _dirpathname _opt_f _opt_s
37         _opt_f=0;_opt_s=0
38         unset -v OPTIND
39         while getopts fs got;do
40                 case "$got" in
41                         [fs]) eval "_opt_$got=1" ;;
42                         *) return 1 ;;
43                         esac
44                 done
45         eval "_varname=\"\$$[$OPTIND+0]\""
46         eval "_dirpathname=\"\$$[$OPTIND+1]\""
47         if [ $_opt_f = 0 -a '!' -d "$_dirpathname" ];then return;fi
48         if [ $_opt_s = 1 -o -z "`eval "echo \\${$_varname}"`" ];then
49                 eval "$_varname='$_dirpathname'"
50         else
51                 # We want to prevent duplicates due to .bashrc reentrancy across fork(2)s. It is array!
52                 _bash_profile_addpath_fini="$_bash_profile_addpath_fini $_varname"
53                 # We want to override any original directories, place dirpathname first!
54                 eval "$_varname=\"$_dirpathname:\${$_varname}\""
55         fi
56         export "$_varname"
57 }
58 function _bash_profile_addpath_fini
59 {
60         local _varname
61         for _varname in `echo "$_bash_profile_addpath_fini"|tr ' ' '\n'|sort -u`;do
62                 eval "$_varname=\"`eval $(echo "echo \"\\$$_varname\"")|awk -v RS=':' '/[^\n]/{if (!x[$0]++) e=e":"$0;}END{print substr(e,2)}'`\""
63                 done
64         unset -v _bash_profile_addpath_fini
65 }
66
67 # Use reverse order of preferred directories:
68 # gid(1) dependency on: /opt/sfw/bin
69 # EUID="`id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null || gid -u`"
70 _bash_profile_addpath -f PATH            "/opt/SUNWspro/bin"
71 _bash_profile_addpath -f PATH            "/usr/dist/exe"
72 _bash_profile_addpath -f PATH            "/sbin"
73 _bash_profile_addpath -f PATH            "/usr/sbin"
74 _bash_profile_addpath -f PATH            "/opt/sfw/bin"
75 [ -x $HOME/bin/ProductivityTools-check ] && eval `$HOME/bin/ProductivityTools-check`
76 [ -n "$PATH_PRODUCTIVITY_TOOLS" ] && _bash_profile_addpath -f PATH "$PATH_PRODUCTIVITY_TOOLS"
77 [ $EUID -eq 0 ] && _bash_profile_addpath -f PATH "/usr/local/sbin"
78 _bash_profile_addpath -f PATH            "/usr/local/bin"
79 _bash_profile_addpath -f LD_LIBRARY_PATH "/opt/sfw/lib"
80 _bash_profile_addpath -f MANPATH         "/usr/X11R6/man"
81 _bash_profile_addpath -f MANPATH         "/usr/share/man"
82 _bash_profile_addpath -f MANPATH         "/usr/local/man"
83 _bash_profile_addpath -s JAVA_HOME       "/usr/java"
84 _bash_profile_addpath -s JAVA_HOME       "/usr/local/java"
85 uname_p="`uname -p 2>/dev/null || uname -m`"
86 [ "`uname`" = "SunOS" ] && _bash_profile_addpath -f LD_LIBRARY_PATH "$HOME/Netscape/dist/lib"
87 for family in "$HOME";do
88         for arch in "$family" $family/$uname_p;do
89                 # Do not "-f": We use /net !
90                 _bash_profile_addpath PATH            "$arch/bin"
91                 _bash_profile_addpath PATH            "$arch/OpenOffice.org"
92                 _bash_profile_addpath PATH            "$arch/forte4j/extbin"
93                 _bash_profile_addpath -s JAVA_HOME    "$arch/java"
94                 [ $EUID -eq 0 ] && _bash_profile_addpath PATH "$arch/sbin"
95                 _bash_profile_addpath LD_LIBRARY_PATH "$arch/lib"
96                 _bash_profile_addpath MANPATH         "$arch/man"
97                 done
98         done
99 _bash_profile_addpath -f -s CVSROOT "short@vellum.cz:/home/short/pserver/cvs"   # default
100 [ -n "$JAVA_HOME" ] && _bash_profile_addpath PATH "$JAVA_HOME/bin"
101 _bash_profile_addpath    -s CVSROOT "$HOME/pserver/cvs"
102 _bash_profile_addpath    -s CVSROOT "$HOME/cvs"
103 _bash_profile_addpath    -s ANT_HOME "/usr/local/ant"
104
105 # /share/perl for Debian
106 # /lib/perl for Debian
107 # /lib/perl5 for Fedora Core
108 mkdir -p $HOME/lib/perl5        # otherwise CPAN will install to "$HOME/lib/site_perl" etc.
109 _perlpatt="$(perl -MConfig -e 'print "{,/".$Config{$_}."}" for qw(version archname);')"
110 for _perldir in $(eval "echo {/usr,$HOME}{/lib{,64}/perl{,5},/share/perl}{,/site_perl}$_perlpatt");do
111         _bash_profile_addpath -f PERLLIB "$_perldir"
112         done
113 unset _perldir
114
115 unset -f _bash_profile_addpath
116 _bash_profile_addpath_fini
117 unset -f _bash_profile_addpath_fini
118
119 for i in tar ls find cp mv ln md5sum du grep ar chown chmod tail;do
120         # Prevent g$i from system directory overriding customized $i binary
121         ###which $i 2>/dev/null | grep /net/jsc-nfs.czech.sun.com/export/jscqa-local/ >/dev/null && continue
122         which g$i 2>/dev/null | grep '^/' >/dev/null && alias $i=g$i
123         done
124
125 alias ls='ls -bF'
126 alias l='ls -lbF'
127 alias maple="ssh -t vega.fjfi.cvut.cz maple"
128 #alias cc='cc -I/home/short/include'
129 alias vi='vim'
130 alias grepb='grep --binary-files=binary'
131 alias L='lynx'
132 alias chown='chown --no-dereference'
133 alias chgrp='chgrp --no-dereference'
134 alias hexedit='hexedit -s'
135 alias cvs2cl='cvs2cl --window 3600 --separate-header --no-wrap'
136 alias cvsfiles='cvsutil --files --print'
137 alias cvsignores='cvsutil --ignores --print'
138 alias cvsignoresall='cvsutil --ignores --workings --print'
139 alias cvsignoresrm='cvsutil --ignores --rm'
140 alias cvsignoresrmall='cvsutil --ignores --workings --rm'
141 alias cvsignoresallrm='cvsutil --ignores --workings --rm'
142 [ "`uname`" = "SunOS" -a -x $HOME/bin/rpm-by-pkg ] && alias rpm='rpm-by-pkg'
143 alias disass='objdump -D --target=binary --architecture=i386'
144 alias cal='cal -m'
145 alias vncreadonly='vncviewer -FullColor -Shared -ViewOnly'
146 alias diff='diff -u'
147 alias rpm='rpm --qf '%{name}-%{version}-%{release}.%{arch}\n'
148
149 # '2>/dev/null' to prevent: unalias: x: not found
150 unalias 2>/dev/null cp  # -i
151 unalias 2>/dev/null mv  # -i
152 unalias 2>/dev/null rm  # -i
153 unalias 2>/dev/null df  # -h
154 unalias 2>/dev/null du  # -h
155
156 export IGNOREEOF=10
157 # '2>/dev/null' to prevent: TMOUT: readonly variable
158 [ -n "$SSH_TTY" ] && export TMOUT=900 2>/dev/null
159 export EDITOR='vim'
160 [ -x /bin/less ] && export PAGER='/bin/less -MMh5cis'
161 export PERL_MM_OPT="PERL=$HOME/bin/perlilib"
162 [ "$UID" -ne 0 ] && export PERL_MM_OPT="$PERL_MM_OPT PREFIX=$HOME"
163 for file in $HOME/.bookmarks.html;do
164         export WWW_HOME="file://$HOME/"
165         [ -r $file ] && export WWW_HOME="file://$file"
166         done
167 export GREP_OPTIONS="--binary-files=without-match --directories=skip --exclude=tags --exclude=TAGS --exclude=CVS"
168 if [ -n "$PS1" ];then   # set only in interactive sessions
169         export PS1='[bash]${LOGNAME}@${HOSTNAME}:${PWD}# '
170         export PS1='\[\017\]'"$PS1"     # \017=std charmap
171         export PS1='\[\033%G\]'"$PS1"   # \033%G=utf-8
172         # Do not: kbd_mode -u # utf-8
173         # as it breaks keyboard state in X and it is not permitted for non-root.
174         fi
175 export MINICOM="-m -c on"       # metakeys+color
176 export HISTSIZE=100000
177 export HISTFILESIZE="$HISTSIZE"
178 export GDBHISTFILE="$HOME/.gdb_history"
179 export CVS_RSH="ssh"
180 # Do not: grep -w "$TERM" /etc/termcap >/dev/null || export TERM=vt220
181 # as Sun workaround as Debian misses: /etc/termcap
182 # expects: $uname_p
183 [ "$TERM" = vt220 -a "${uname_p%86}" != "$uname_p" ] && export TERM=linux
184 if grep 2>/dev/null -q '^..............:0C38 00000000:0000 0A ' /proc/net/tcp;then
185         export  http_proxy=http://127.0.0.1:3128/
186         export https_proxy=http://127.0.0.1:3128/
187         export   ftp_proxy=http://127.0.0.1:3128/
188 fi
189 _selfabs=
190 [ "$_selfabs" = "${_selfabs#/}" ] && _selfabs="$BASH_SOURCE"
191 [ "$_selfabs" = "${_selfabs#/}" ] && _selfabs="$BASH_ENV"
192 [ "$_selfabs" = "${_selfabs#/}" ] && _selfabs="$PWD/.bashrc"
193 [ -r "$_selfabs" ] || unset _selfabs
194 [ -n "$_selfabs" ] && export VIMINIT="source `echo "$_selfabs"|sed 's/[.]bashrc$/.vimrc/'`"
195
196 ###export SOCKS5_SERVER=icsocks.holland.sun.com
197
198 # Force English.
199 unset LANG LANGUAGE `set|sed -n 's/^\(LC_[^=]*\)=.*$/\1/p'`
200 export LANG=en_US.UTF-8
201 # Force strcoll() to sort case-sensitively! (empty/undef doesn't work)
202 export LC_COLLATE=C
203 # Do not: # Prevent: perl: warning: Setting locale failed.
204 #         # due to LC_COLLATE=C and LC_ALL=(unset)
205 #         export LC_ALL=C
206 # as it breaks Mutt "utf-8" and somehow it is no longer needed.
207
208 function wclines { awk '{x[$0]++}END{for (i in x) print x[i]"\t"i}'; }; export -f wclines
209 # SunOS does not support "-m"
210 export ULIMITME_OPTS=""
211 for i in "-m 100000" "-d 150000" "-v 200000";do
212         (ulimit $i 2>/dev/null) && ULIMITME_OPTS="$ULIMITME_OPTS $i"
213         done
214 # Prevent: ulimit:  -m 100000 -d 150000 -v 200000: invalid number
215 # by forcing our known $IFS value; eval(1) is needed to take $IFS to effect:
216 function ulimitme { IFS=" " eval "ulimit $ULIMITME_OPTS"; }; export -f ulimitme
217 function grep {(unset grep; ( ulimitme; grep "$@"; ); );}; export -f grep
218 function finame { find . -false `
219         awk </dev/null 'BEGIN{ for (i=1;i<ARGC;i++) print " -o -iname *"ARGV[i]"*"; }' "$@";
220         `; }; export -f finame
221 function mkcd { mkdir -p "$1"; cd "$1"; }; export -f mkcd
222 function pushdmk { mkdir -p "$1"; pushd "$1"; }; export -f pushdmk
223 function rsync {(unset rsync; rsync -v -e ssh --progress --stats --partial --block-size=512 "$@"; );}; export -f rsync
224 function tohex { od -An -txC|tr -d '\n '|tr 'a-f' 'A-F';echo; }; export -f tohex
225 function edall {
226         find -type f|while read -r i;do
227                 (awk </dev/null 'BEGIN{ for (i=1;i<ARGC;i++) print ARGV[i]; }' "$@";echo -e 'w\nq')|ed -s "$i"
228                 done
229         }; export -f edall
230 function mi { (
231         set -ex;cd "$1";while true;do test "$PWD" != "/";if [ -e configure.in -o -e Makefile.PL ];then break;fi;cd ..;done;make install;
232         ); };export -f mi
233 function ctags {(unset ctags;
234         if [ $# -ne 0 -a '(' $# -ne 1 -o "$1" '!=' "--c-types=+px" ')' ];then ctags "$@";else
235                 find -type f -a '!' -name tags -a '!' -name TAGS -a '(' -false \
236                                                 -o -name "*.[chC]" \
237                                                 -o -name "*.cc"    \
238                                                 -o -name "*.java"  \
239                                                 -o -name "*.p[lm]" \
240                                                 ')' \
241                                 |ctags --file-tags -L - "$@"
242         fi; );}; export -f ctags
243 function ctagsh { ctags "--c-types=+px"; }; export -f ctagsh
244 function cpan {(unset cpan; if [ $# = 0 ];then cpan;else perl -MCPAN -e "install qw($*);";fi; );}; export -f cpan
245 function exx { cd "`unset exx;exx "$@"|tee /proc/self/fd/2|tail -n1|sed -n 's/^extdir=//p'`"; };export -f exx
246 function revlines { perl -e 'print reverse <>;'; }; export -f revlines
247 function debuginfo { if test -n "$*";then echo "$*";else cat;fi \
248         |xargs rpm -qf|xargs rpmquery --qf '%{SOURCERPM}\n'|sed 's/-[^-]*-[^-]*[.]src[.]rpm$/-debuginfo/'|sort -u; }
249 function ipcsrmall { ipcs|awk '/- Shared Memory/{x="-m"}/- Semaphore/{x="-s"}/^0x/{print "ipcrm "x" "$2}'; }
250 function eog {(unset eog; touch /tmp/eog.$$;eog "$@" {,,,,,,,,,}/tmp/eog.$$;rm -f /tmp/eog.$$; );}; export -f eog
251 function diffc { diff -u "$@"|grep -v '^\(Only in \|Binary files\)'; }; export -f diffc
252 function diffi { diffc -X ~/.diffi.list "$@"; }; export -f diffi
253
254 ulimit -S -c 0
255 set +H
256 shopt -s mailwarn
257 unset OPTIND
258
259 if [ -f "$HOME/.bashrc.local" ];then source "$HOME/.bashrc.local";fi
260
261 # Interactive part:
262 for key in $HOME/.ssh/id_dsa;do
263         [ -r "$key" ] || continue
264         # Do not: [ -n "$SSH_TTY" ] && continue
265         # as we may want foreign SSH keys too.
266
267         agenteval=/tmp/.$USER.ssh-agent.eval
268         if lockfile -1 -r 3 -l 10 -s 1 $agenteval.lock;then
269                 test -f $agenteval -a -O $agenteval -a -G $agenteval &&
270                                 # ">/dev/null" to prevent: echo Agent pid 31074;
271                                 source $agenteval >/dev/null
272                 if [ "ssh-agent" != "`(xargs -0 </proc/"$SSH_AGENT_PID"/cmdline sh -c 'echo "$0"') 2>/dev/null `" ];then
273                         rm -f $agenteval
274                         (test ! -e $agenteval && ssh-agent -s >$agenteval) || echo >&2 'Failing ssh-agent!'
275                         # ">/dev/null" to prevent: echo Agent pid 31074;
276                         source $agenteval >/dev/null
277                 fi
278                 rm -f $agenteval.lock
279         fi
280
281         # Prevent gdm(8) lockups on non-interactive consoles.
282         tty -s || continue
283         (ssh-add -l|grep -qw "$key") && continue
284         if lockfile -! -1 -r 0 $agenteval.input.lock 2>/dev/null;then
285                 echo >&2 -n "Locking: $agenteval.input.lock ... "
286                 lockfile -1 -r -1 $agenteval.input.lock
287                 echo >&2 "locked"
288         fi
289         # Recheck identity existence after the lock acquire
290         if ssh-add -l|grep -qw "$key";then
291                 echo >&2 "Identity $key already appended in the meantime."
292         else
293                 # "2>/dev/null" to prevent: Identity added: .ssh/id_dsa (.ssh/id_dsa)
294                 ssh-add "$key" 2>/dev/null
295         fi
296         rm -f $agenteval.input.lock
297         echo >&2 "$agenteval.input.lock unlocked."
298 done
299 unset agenteval
300
301         unset _home_short_dotbashrc     # permit later reinitializations
302 fi      # _home_short_dotbashrc
303
304 true    # Prevent crash in '-e' mode