X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=blobdiff_plain;f=.bashrc;h=eddb9fa3dfe3e11e9a3961875eb720cdbb548009;hp=843f2b85a863f38f62907cf6d8270bfb3a971f65;hb=f5d32a65ad7581a0092ee43bce69694e1f0ab4fa;hpb=5ec48b75d5857a895944c3f9a7b856d2257c9e60 diff --git a/.bashrc b/.bashrc index 843f2b8..eddb9fa 100644 --- a/.bashrc +++ b/.bashrc @@ -113,11 +113,19 @@ function mi { ( set -ex;cd "$1";while true;do test "$PWD" != "/";if [ -e configure.in -o -e Makefile.PL ];then break;fi;cd ..;done;make install; ); };export -f mi function ctags {(unset ctags; - if [ $# != 0 ];then ctags "$@";else - find -type f -a '(' -name "*.[chC]" -o -name "*.cc" -o -name "*.java" -o -name "*.p[lm]" ')'|ctags --file-tags -L - + if [ $# -ne 0 -a '(' $# -ne 1 -o "$1" '!=' "--c-types=+px" ')' ];then ctags "$@";else + find -type f -a '(' -false \ + -o -name "*.[chC]" \ + -o -name "*.cc" \ + -o -name "*.java" \ + -o -name "*.p[lm]" \ + ')' \ + |ctags --file-tags -L - "$@" fi; );}; export -f 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 ulimit -c 0 set +H