Fixed problem that could have occured in the mkdcd command

with directories containing spaces
pull/16/head
Mark Szymanski 2010-10-17 21:16:14 -05:00
parent 39248d498a
commit 45c1cb9cc2
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ alias rd=rmdir
alias d='dirs -v'
function mkcd(){
mkdir $*
cd $*
mkdir -p "$*"
cd "$*"
}
function aliases-help() {