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