X-Git-Url: http://lab.mitty.jp/git/?a=blobdiff_plain;f=TipAndDoc%2F.bashrc;h=4b743ecd374c3b2d9dbd347106e70246604028b3;hb=8c3e911576ed3d6966ad4105a7743096e423065f;hp=33a26e3fbffb824f0f95e3f252215eed4e495497;hpb=b949a0f80b773a49f5029132c716ce019507e3bd;p=lab.git diff --git a/TipAndDoc/.bashrc b/TipAndDoc/.bashrc index 33a26e3..4b743ec 100644 --- a/TipAndDoc/.bashrc +++ b/TipAndDoc/.bashrc @@ -32,12 +32,19 @@ 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\$ ' fi +function svnst { + svn st $@ | grep "^[^?]" +} + alias vi='vim' alias sudo='sudo -H ' alias rm='rm -v' +alias screen='screen -U -R' +alias mv='mv -i' +alias cp='cp -i'