X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=blobdiff_plain;f=.bashrc;h=6397fe3150914d0ae654374087ad4c71a24fdf2e;hp=f401ff25725d661b3bdcbe453351040bced37eea;hb=b8be1b96db19decef6b6b1de6115aa7c5b50bb18;hpb=5b7268befaa7b1151a7e1fc82c11bc66dfad5b4b diff --git a/.bashrc b/.bashrc index f401ff2..6397fe3 100644 --- a/.bashrc +++ b/.bashrc @@ -7,6 +7,8 @@ if [ -n "$_home_short_dotbashrc_norc" -o "${TERM#norc-}" != "$TERM" ];then export _home_short_dotbashrc=true fi +export PERL5LIB="$HOME/perl5/lib/perl5/`uname -m`-linux-thread-multi:$HOME/perl5/lib/perl5"; + # "$PS1" for interactive shells detection. if [ -n "$PS1" -a -z "$_home_short_dotbashrc" ];then # We permit later reinitialization by unsetting it. @@ -96,11 +98,6 @@ _bash_profile_addpath -s CVSROOT "$HOME/pserver/cvs" _bash_profile_addpath -s CVSROOT "$HOME/cvs" _bash_profile_addpath -s ANT_HOME "/usr/local/ant" -for _perldir in $(eval "echo $HOME{/share,/lib{,64}}/perl5{/site_perl,}");do - _bash_profile_addpath -f PERL5LIB "$_perldir" - done -unset _perldir - unset -f _bash_profile_addpath _bash_profile_addpath_fini unset -f _bash_profile_addpath_fini @@ -156,24 +153,32 @@ eval ' 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; } ' +unset command_not_found_handle +shopt -u progcomp # Disable 'bash-completion' rpm export IGNOREEOF=10 # '2>/dev/null' to prevent: TMOUT: readonly variable [ -n "$SSH_TTY" ] && export TMOUT=900 2>/dev/null export EDITOR='vim' -[ -x /bin/less ] && export PAGER='/bin/less -MMh5cis' -export PERL_MM_OPT="" -[ "$UID" -ne 0 ] && export PERL_MM_OPT="$PERL_MM_OPT PREFIX=$HOME" +#broken: [ -x /bin/less ] && export PAGER='/bin/less -rMMh5cis' + +export PERL_LOCAL_LIB_ROOT="$HOME/perl5"; +export PERL_MB_OPT="--install_base $HOME/perl5"; +export PERL_MM_OPT="INSTALL_BASE=$HOME/perl5"; +# Sometimes needed in non-interactive .bashrc. +# Unconditionally it would break quilt. +export PATH="$HOME/perl5/bin:$PATH"; + for file in $HOME/.bookmarks.html;do export WWW_HOME="file://$HOME/" [ -r $file ] && export WWW_HOME="file://$file" done -export GREP_OPTIONS="--binary-files=without-match --directories=skip" -if echo x|GREP_OPTIONS="--exclude=y" grep -q x 2>/dev/null;then - export GREP_OPTIONS="$GREP_OPTIONS --exclude=tags --exclude=TAGS --exclude=ChangeLog* --exclude=*.svn-base --exclude=*~" +if echo x|grep --exclude=y -q x 2>/dev/null;then + alias grep='grep --exclude=tags --exclude=TAGS --exclude=ChangeLog* --exclude=*.svn-base --exclude=*~' # FIXME: grep(1) ignores subdirectories for --exclude. - #export GREP_OPTIONS="$GREP_OPTIONS --exclude=testsuite --exclude=.pc --exclude=.svn --exclude=CVS --exclude=po" + # --exclude=testsuite --exclude=.pc --exclude=.svn --exclude=CVS --exclude=po fi if [ -n "$PS1" ];then # set only in interactive sessions if [ ! -f /MOCK ];then @@ -230,6 +235,7 @@ export LC_COLLATE=C # http://lists.gnu.org/archive/html/bug-readline/2009-09/msg00006.html # 2>/dev/null for possible: stty: standard input: Inappropriate ioctl for device stty -echoctl 2>/dev/null +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" @@ -245,7 +251,7 @@ function finame { find . -false ` `; } function mkcd { mkdir -p "$1"; cd "$1"; } function pushdmk { mkdir -p "$1"; pushd "$1"; } -function rsync {(unset rsync; n rsync -a -v -e ssh --progress --stats --inplace --rsync-path='nice -n20 ionice -c3 rsync' "$@"; );} +function rsync {(unset rsync; n rsync -c -a -v -e ssh --progress --stats --inplace --rsync-path='nice -n20 ionice -c3 rsync' "$@"; );} function tohex { od -An -txC|tr -d '\n '|tr 'a-f' 'A-F';echo; } function edall { find -type f|while read -r i;do @@ -331,8 +337,8 @@ function sourcewarecvscheckout {(set -ex #(set +x;cvsignoresall) (set +x;ignoresall) );} -function gdbgitclone { git clone git://sourceware.org/git/gdb.git gdb-git; } -function binutilsgitclone { git clone git://sourceware.org/git/binutils.git binutils-git; } +function gdbgitclone { git clone git://sourceware.org/git/binutils-gdb.git gdb-git; } +function archergitclone { git clone git://sourceware.org/git/archer.git archer-git; } function gdbcvscheckout { sourcewarecvscheckout gdb; } function binutilscvscheckout { sourcewarecvscheckout binutils; } function uri_escape { perl -MURI::Escape -le '$_=<>;chomp;print uri_escape $_;'; }; @@ -373,6 +379,7 @@ function gpg {(unset gpg; http_proxy= all_proxy= HTTP_PROXY= ALL_PROXY= gpg "$@" ulimit -S -c 0 set +H shopt -s mailwarn +shopt -s direxpand unset OPTIND umask 022