X-Git-Url: http://lab.mitty.jp/git/?a=blobdiff_plain;f=TipAndDoc%2F.bashrc;h=298d439e847f2208178bc5c01250e535da6aa050;hb=d3973efc38bc7426eec6cbf151192ddc1fb93064;hp=0ac605b67e261b582e2652075cbbc95dea9f3786;hpb=4c27517d9adfabcf9afa743b40c1d0eae81f873a;p=lab.git diff --git a/TipAndDoc/.bashrc b/TipAndDoc/.bashrc index 0ac605b..298d439 100644 --- a/TipAndDoc/.bashrc +++ b/TipAndDoc/.bashrc @@ -32,7 +32,7 @@ function I { if [ "$1" ]; then history | grep "$@"; else history 30; fi } -if [ -f $BASH_COMPLETION_DIR/git ]; then +if [ -f $BASH_COMPLETION_DIR/git -o -f $BASH_COMPLETION_COMPAT_DIR/git ]; then export PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(__git_ps1)\$ ' else export PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' @@ -42,6 +42,13 @@ function svnst { svn st $@ | grep "^[^?]" } +function hexcmp { + cmp -l "$@" | awk '{printf "%08X %02X %02X\n", $1-1, strtonum(0$2), strtonum(0$3)}' +} + alias vi='vim' alias sudo='sudo -H ' alias rm='rm -v' +alias screen='screen -U -R' +alias mv='mv -i' +alias cp='cp -i'