X-Git-Url: https://git.jankratochvil.net/?a=blobdiff_plain;f=.bashrc;h=ad2a9dfc23c700e16634d097cea8c87504310d0c;hb=7ffc4ca8a9f9c0fd1b7ca58560eb4d348c9de76a;hp=c87c1b772529ef34c4eb5350070c1b7e60990697;hpb=37a96cc389591663e56ca85a729189b6be46d397;p=nethome.git diff --git a/.bashrc b/.bashrc index c87c1b7..ad2a9df 100644 --- a/.bashrc +++ b/.bashrc @@ -102,7 +102,7 @@ _bash_profile_addpath -s ANT_HOME "/usr/local/ant" # /lib/perl5 for Fedora Core mkdir -p $HOME/lib/perl5 # otherwise CPAN will install to "$HOME/lib/site_perl" etc. _perlpatt="$(perl -MConfig -e 'print "{,/".$Config{$_}."}" for qw(version archname);')" -for _perldir in $(eval "echo {/usr,$HOME}{/lib/perl5,/share/perl,/lib/perl}{,/site_perl}$_perlpatt");do +for _perldir in $(eval "echo {/usr,$HOME}{/lib{,64}/perl{,5},/share/perl}{,/site_perl}$_perlpatt");do _bash_profile_addpath -f PERLLIB "$_perldir" done unset _perldir @@ -123,6 +123,7 @@ alias vi='vim' alias grepb='grep --binary-files=binary' alias L='lynx' alias chown='chown --no-dereference' +alias hexedit='hexedit -s' alias cvs2cl='cvs2cl --window 3600 --separate-header --no-wrap' alias cvsfiles='cvsutil --files --print' alias cvsignores='cvsutil --ignores --print' @@ -186,11 +187,6 @@ export LC_COLLATE=C # export LC_ALL=C # as it breaks Mutt "utf-8" and somehow it is no longer needed. -function cvsdiff { cvs diff "$@" 2>&1|pipebuf -q| less; }; export -f cvsdiff -function cvsdiffi { cvs diff "$@" 2>&1|pipebuf -q|grep -v '^?'|less; }; export -f cvsdiffi -function cvsupdate { cvs update "$@" 2>&1|pipebuf -q| less; }; export -f cvsupdate -function cvsupdatei { cvs update "$@" 2>&1|pipebuf -q|grep -v '^?'|less; }; export -f cvsupdatei - function wclines { awk '{x[$0]++}END{for (i in x) print x[i]"\t"i}'; }; export -f wclines # SunOS does not support "-m" export ULIMITME_OPTS="" @@ -229,7 +225,11 @@ function ctags {(unset ctags; function ctagsh { ctags "--c-types=+px"; }; export -f ctagsh function cpan {(unset cpan; if [ $# = 0 ];then cpan;else perl -MCPAN -e "install qw($*);";fi; );}; export -f cpan function exx { cd "`unset exx;exx "$@"|tee /proc/self/fd/2|tail -n1|sed -n 's/^extdir=//p'`"; };export -f exx -function revlines { perl -e 'my @r=();push @r,$_ while (<>);print pop @r while @r;'; }; export -f revlines +function revlines { perl -e 'print reverse <>;'; }; export -f revlines +function debuginfo { if test -n "$*";then echo "$*";else cat;fi \ + |xargs rpm -qf|xargs rpmquery --qf '%{SOURCERPM}\n'|sed 's/-[^-]*-[^-]*[.]src[.]rpm$/-debuginfo/'|sort -u; } +function ipcsrmall { ipcs|awk '/- Shared Memory/{x="-m"}/- Semaphore/{x="-s"}/^0x/{print "ipcrm "x" "$2}'; } +function eog {(unset eog; touch /tmp/eog.$$;eog "$@" {,,,,,,,,,}/tmp/eog.$$;rm -f /tmp/eog.$$; );}; export -f eog ulimit -S -c 0 set +H