X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=blobdiff_plain;f=.bashrc;h=d2f99d3465968a0f8b27d62ceec3a2e0f6e914b3;hp=57623c71673c41dee9a43025c6d62e5209981b1c;hb=734e6405dcc1dea1ff0dc5a0fb13c80fe305b8d3;hpb=062d51d4e58618fe9050600621a1d06b53f5aa7c diff --git a/.bashrc b/.bashrc index 57623c7..d2f99d3 100644 --- a/.bashrc +++ b/.bashrc @@ -224,6 +224,9 @@ if [ -n "$cpus" ];then MAKEFLAGS="$MAKEFLAGS -j$[$cpus*1]" fi unset cpus +if (which icecc && pidof iceccd) &>/dev/null;then + export CCACHE_PREFIX=icecc +fi # Do not: grep -w "$TERM" /etc/termcap >/dev/null || export TERM=vt220 # as Sun workaround as Debian misses: /etc/termcap # expects: $uname_p @@ -388,6 +391,7 @@ function yumupdate {(ulimit -v unlimited;yum makecache;yum -y --skip-broken upda function gitcommit { git commit -a --allow-empty-message -m '' "$@"; } function gpg {(unset gpg; http_proxy= all_proxy= HTTP_PROXY= ALL_PROXY= gpg "$@"; );} function swap() {( set -ex;local TMPFILE=tmp.$$;[ $# = 2 ] && mv "$1" $TMPFILE && mv "$2" "$1" && mv $TMPFILE "$2" && echo done )} +alias gthumb='rm -rf ~/.cache/thumbnails/fail/;gthumb' ulimit -S -c 0 set +H