X-Git-Url: https://git.jankratochvil.net/?a=blobdiff_plain;f=.bashrc;h=65333749c73bc0cece546d54c8aecfe757b8868f;hb=ff6cf3d6e3ed6b59ac44a229de5eecaf3d5d03c0;hp=65446b301051f6f2fd6a479c6d7a6a61a4799e67;hpb=f99a3cc2b88f5e57faa842eb8e19d8cbb2ee5601;p=nethome.git diff --git a/.bashrc b/.bashrc index 65446b3..6533374 100644 --- a/.bashrc +++ b/.bashrc @@ -159,11 +159,12 @@ eval ' function vncreadonly { vncviewer -FullColor -Shared -ViewOnly "$@"; } function diff {(unset diff; ( diff -dup "$@"; ); );} $(: MAKEFLAGS= - "make install" does not expect -j and .spec files do not force -j1.) - function rpmbuildlocal { MAKEFLAGS= n rpmbuild --define "_topdir $PWD" --define "_builddir $PWD" --define "_rpmdir $PWD" --define "_sourcedir $PWD" --define "_specdir $PWD" --define "_srcrpmdir $PWD" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" --with buildisa "$@"; rmdir &>/dev/null BUILDROOT; } + function rpmbuildlocal { time MAKEFLAGS= n rpmbuild --define "_topdir $PWD" --define "_builddir $PWD" --define "_rpmdir $PWD" --define "_sourcedir $PWD" --define "_specdir $PWD" --define "_srcrpmdir $PWD" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" --with buildisa "$@"; rmdir &>/dev/null BUILDROOT; } function gdbn { gdb -nx --command=~/.gdbinit "$@"; } function hd { od -Ax -tx1; } function wget {(unset wget; ( wget --no-check-certificate "$@"; ); );} function ucwkbd { setxkbmap -layout us,cz -variant ,ucw -option grp:caps_switch; } + function gdb {(unset gdb; ( gdb -q "$@"; ); );} ' unset command_not_found_handle @@ -197,7 +198,7 @@ if [ -n "$PS1" ];then # set only in interactive sessions export PS1='[bash]${LOGNAME}@MOCK-'"`cat /MOCK`"':${PWD}# ' fi export PS1='\[\017\]'"$PS1" # \017=std charmap - if [ "${SHELL#*/com.termux/}" = "$SHELL" ];then + if [ "${SHELL#*/com.termux/}" = "$SHELL" -a "${SSH_CLIENT#2a02:2b88:6:3b57::8f }" = "$SSH_CLIENT" ];then export PS1='\[\033%G\]'"$PS1" # \033%G=utf-8 fi # Do not: kbd_mode -u # utf-8 @@ -208,12 +209,13 @@ export HISTSIZE=10000000 export HISTFILESIZE="$HISTSIZE" export GDBHISTFILE="$HOME/.gdb_history" export CVS_RSH="ssh" -export TZ=":/usr/share/zoneinfo/Europe/Prague" -#export TZ=":/usr/share/zoneinfo/Canada/Eastern" +export TZ="Europe/Prague" +#export TZ="Canada/Eastern" export PYTHONUNBUFFERED=1 export ASAN_OPTIONS=detect_leaks=0 export GTK_OVERLAY_SCROLLING=0 export MAKEFLAGS= +export DEBUGINFOD_URLS= cpus="`getconf _NPROCESSORS_ONLN`" if [ -n "$cpus" ];then # *3/2 was OOM for host1 32 CPUs + 16GB RAM @@ -223,6 +225,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 @@ -251,12 +256,16 @@ export GIT_MERGE_AUTOEDIT=no function wclines { awk '{x[$0]++}END{for (i in x) print x[i]"\t"i}'; } # SunOS does not support "-m" export ULIMITME_OPTS="" -for i in "-m 100000" "-d 150000" "-v 200000";do +for i in "-v 2000000";do (ulimit $i 2>/dev/null) && ULIMITME_OPTS="$ULIMITME_OPTS $i" done +if [ -z "$ULIMITME_OPTS" ];then + # MinGW64 would be printing "unlimited" on each ulimitme() execution. + ULIMITME_OPTS="-v unlimited" +fi # Prevent: ulimit: -m 100000 -d 150000 -v 200000: invalid number # by forcing our known $IFS value; eval(1) is needed to take $IFS to effect: -function ulimitme { IFS=" " eval "ulimit $ULIMITME_OPTS"; } +function ulimitme { IFS=" " eval "ulimit 2>/dev/null $ULIMITME_OPTS"; } function finame { find . -false ` awk ;1 while s/^(?:###)?({\n)(?:###)?( *ADDRESS_IN_RANGE.*\n(?:[^}#].*\n)*)###/$1$2/gm;print;' $s;valgrind --num-callers=50 --suppressions=$s "$@";);} function yumupdate {(ulimit -v unlimited;yum makecache;yum -y --skip-broken update "$@";);} -function gitcommit { git commit -a -m .; } +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