X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=blobdiff_plain;f=.bashrc;h=843f2b85a863f38f62907cf6d8270bfb3a971f65;hp=6f7a9c9f4a6edc6a09104bb7009007c1a251a0c5;hb=6982f7d3421f7cc1d17551600483d59708aee996;hpb=e5a04a0d626eaa3732b26abed82e2eec301b501b diff --git a/.bashrc b/.bashrc index 6f7a9c9..843f2b8 100644 --- a/.bashrc +++ b/.bashrc @@ -76,7 +76,11 @@ export LC_CTYPE=cs_CZ.ISO-8859-2 export PERL_MM_OPT="PERL=$HOME/bin/perlilib PREFIX=$HOME" export WWW_HOME="file:///home/short/.bookmarks.html" export GREP_OPTIONS="--binary-files=without-match --directories=skip" -[ -n "$PS1" ] && export PS1="`echo -en '\017'`$PS1" # set only in interactive sessions +if [ -n "$PS1" ];then # set only in interactive sessions + # kbd_mode -u # utf-8 + # export PS1='\[\017\033%G\]'"$PS1" # \017=std charmap, \033%G=utf-8 + export PS1='\[\017\]'"$PS1" # \017=std charmap + fi export MINICOM="-m -c on" # metakeys+color export HISTSIZE=100000 export HISTFILESIZE="$HISTSIZE" @@ -110,8 +114,10 @@ function mi { ( ); };export -f mi function ctags {(unset ctags; if [ $# != 0 ];then ctags "$@";else - find -type f -a '(' -name "*.[chC]" -o -name "*.cc" -o -name "*.java" ')'|ctags --file-tags -L - + find -type f -a '(' -name "*.[chC]" -o -name "*.cc" -o -name "*.java" -o -name "*.p[lm]" ')'|ctags --file-tags -L - fi; );}; export -f ctags +function cpan {(unset cpan; if [ $# = 0 ];then cpan;else perl -MCPAN -e "install qw($*);";fi; );}; export -f cpan +function exx { cd "`unset exx;exx "$@"|tee /proc/self/fd/2|tail -n1|sed -n 's/^extdir=//p'`"; };export -f exx ulimit -c 0 set +H