Avoid automatic "cvs update -d" for the selected CVS repositories.
[nethome.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 27dd64e..0a2a882 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -140,11 +140,12 @@ alias cvsignoresrm='cvsutil --ignores --rm'
 alias cvsignoresrmall='cvsutil --ignores --workings --rm'
 alias cvsignoresallrm='cvsutil --ignores --workings --rm'
 [ "`uname`" = "SunOS" -a -x $HOME/bin/rpm-by-pkg ] && alias rpm='rpm-by-pkg'
-alias rpmdb='rpm --define "_dbpath `echo /usr/lib/rpmdb/*/*`"'
 alias disass='objdump -D --target=binary --architecture=i386'
 alias cal='cal -m'
 alias vncreadonly='vncviewer -FullColor -Shared -ViewOnly'
 alias diff='diff -u'
+alias rpmqf='rpm --qf "%{name}-%{version}-%{release}.%{arch}\n"'
+alias gdbn='gdb -nx --command=~/.gdbinit'
 
 # '2>/dev/null' to prevent: unalias: x: not found
 unalias 2>/dev/null cp # -i
@@ -250,6 +251,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/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