X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=blobdiff_plain;f=.bashrc;h=fcdd65b77edd6a472a0a7a212469e2eed65b408e;hp=5a18e3858ca20675cb1be36a66baeaf6b6713cef;hb=df8c54d0bc4e11bf7e3e821eb1bcad5e1ee00b5b;hpb=1338370fc6b59b667db799c2b3ef07e46e203cf4 diff --git a/.bashrc b/.bashrc index 5a18e38..fcdd65b 100644 --- a/.bashrc +++ b/.bashrc @@ -338,6 +338,12 @@ function gdbdevelcvscheckout {(set -ex cd gdb-devel make sources );} +function gdbf12cvscheckout {(set -ex + ! test -d gdb-F-12 + (set +x;CVSROOT=:pserver:anonymous@cvs.fedoraproject.org:/cvs/pkgs cvs checkout -d gdb-F-12 rpms/gdb/F-12) + cd gdb-F-12 + make sources + );} function uri_escape { perl -MURI::Escape -le '$_=<>;chomp;print uri_escape $_;'; }; function uri_unescape { perl -MURI::Escape -le '$_=<>;chomp;print uri_unescape $_;'; }; function n { if [ "$1" = "-p" ];then renice +19 "$@";ionice -c3 "$@";else nice -n19 ionice -c3 "$@";fi };