X-Git-Url: https://git.jankratochvil.net/?a=blobdiff_plain;f=.bashrc;h=76f0d10cbab0da0a1befb50fcd68fe0bf57cb4fd;hb=cb399b9b138405a46204b7ad0975afd35b07d2c7;hp=66bf4a5a77ec16083ee764c7d8fd74c533206fb3;hpb=9a8bb00723d74fb12f362abad67ac64eee874693;p=nethome.git diff --git a/.bashrc b/.bashrc index 66bf4a5..76f0d10 100644 --- a/.bashrc +++ b/.bashrc @@ -145,6 +145,7 @@ alias cal='cal -m' alias vncreadonly='vncviewer -FullColor -Shared -ViewOnly' alias diff='diff -u' alias rpmqf='rpm --qf "%{name}-%{version}-%{release}.%{arch}\n"' +alias rpmbuildlocal='rpmbuild --define "_topdir $PWD" --define "_builddir $PWD" --define "_rpmdir $PWD" --define "_sourcedir $PWD" --define "_specdir $PWD" --define "_srcrpmdir $PWD"' alias gdbn='gdb -nx --command=~/.gdbinit' # '2>/dev/null' to prevent: unalias: x: not found @@ -233,11 +234,14 @@ function mi { ( ); };export -f mi function ctags {(unset ctags; if [ $# -ne 0 -a '(' $# -ne 1 -o "$1" '!=' "--c-types=+px" ')' ];then ctags "$@";else - find -type f -a '!' -name tags -a '!' -name TAGS -a '(' -false \ + find -name testsuite -prune -o \ + -type f -a '!' -name tags -a '!' -name TAGS -a '(' -false \ -o -name "*.[chC]" \ -o -name "*.cc" \ + -o -name "*.cxx" \ -o -name "*.java" \ -o -name "*.p[lm]" \ + -o -name "*.py" \ ')' \ |ctags --file-tags -L - "$@" fi; );}; export -f ctags @@ -251,6 +255,23 @@ function ipcsrmall { ipcs|awk '/- Shared Memory/{x="-m"}/- Semaphore/{x="-s"}/^0 function eog {(unset eog; touch /tmp/eog.$$;eog "$@" {,,,,,,,,,}/tmp/eog.$$;rm -f /tmp/eog.$$; );}; export -f eog function diffc { diff -u "$@"|grep -v '^\(Only in \|Binary files\)'; }; export -f diffc function diffi { diffc -X ~/.diffi.list "$@"; }; export -f diffi +function cvs {(unset cvs; + local _opts _opts_d _now _line _o + if grep -iw "sources.redhat.com:/cvs/src" CVS/Root &>/dev/null;then _opts_d="";else _opts_d="-d";fi + _now=false + _line="" + _opts="" + while [ $# != 0 ];do + _o="$1" + shift + _line="$_line $_o" + if [ "$_o" = "--" ] && ! $_now;then _now=true;continue;fi + if [ "${_o#-}" != "$_o" ] && ! $_now;then continue;fi + if [ "$_o" = update -o "$_o" = upd -o "$_o" = up ];then _opts="$_opts_d";fi + break + done + cvs $_line $_opts "$@" + ); }; export -f cvs ulimit -S -c 0 set +H