X-Git-Url: http://git.jankratochvil.net/?p=nethome.git;a=blobdiff_plain;f=.bashrc;h=e7071abdc767d8798accf14f0665321b687a72d0;hp=1b84bed131044db3993a82eca6cd2fcd4a112a37;hb=d61c86fd67cecf7dac1e82bf6f826f341a794bc1;hpb=109b25168d95fca5d8514e36f26f2f5719c1e1ab diff --git a/.bashrc b/.bashrc index 1b84bed..e7071ab 100644 --- a/.bashrc +++ b/.bashrc @@ -58,10 +58,10 @@ export GREP_OPTIONS="--binary-files=without-match --directories=skip" # even when LANG is set to "en_US" it is lethal - strcoll() starts to sort case-insensitively! unset LANG -function cvsdiff { cvs diff "$@" 2>&1|cat |less; }; export -f cvsdiff -function cvsdiffi { cvs diff "$@" 2>&1|grep -v '^?'|less; }; export -f cvsdiffi -function cvsupdate { cvs update "$@" 2>&1|cat |less; }; export -f cvsupdate -function cvsupdatei { cvs update "$@" 2>&1|grep -v '^?'|less; }; export -f cvsupdatei +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 cvsfiles { for i in `find . -name Entries|grep '/CVS/Entries$'`;do j="`echo "$i"|sed 's,CVS/Entries$,,'`"