X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.shellrc;h=124aef17d3a7d12ca14fe7b3c4524749d6f249bd;hb=bd57e37cf34ee5160502d3cad22bb0a6e570b83d;hp=e47cda2abd976cfa13f98fccf3705c1146a585c8;hpb=86c6f81d3b7c0b192549c1b285262597c100b22e;p=dotfiles.git diff --git a/.shellrc b/.shellrc index e47cda2..124aef1 100644 --- a/.shellrc +++ b/.shellrc @@ -95,7 +95,7 @@ esac # clear history, clear screen and logout -#chlo() { cd; unset HISTFILE; rm -f .*history*; clo; } +#chlo() { cd; unset HISTFILE; rm -f .sh_history; history -c; clo; } #Pwd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)\/\(.*\)\/\(.*\)/...\/\2\/\3\/\4/"; } @@ -137,19 +137,6 @@ include() } -function mkcd { - if [ $# -ne 1 ]; then - echo "Usage: mkcd directory_name" >&2 - elif [ -d "$1" ]; then - cd "$1" - elif [ -e "$1" ]; then - echo "Error: $1 is a file" >&2 - else - mkdir -p "$1" && cd "$1" - fi -} - - mc() { if [ -n "$SLOWTERM" ]; then MC_SLOW="--slow" @@ -217,6 +204,19 @@ mc() { } +mkcd() { + if [ $# -ne 1 ]; then + echo "Usage: mkcd directory_name" >&2 + elif [ -d "$1" ]; then + cd "$1" + elif [ -e "$1" ]; then + echo "Error: $1 is a file" >&2 + else + mkdir -p "$1" && cd "$1" + fi +} + + tmux() { case "$TERM" in rxvt)