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' alias d='dirs -v'
function mkcd(){ function mkcd(){
mkdir $* mkdir -p "$*"
cd $* cd "$*"
} }
function aliases-help() { function aliases-help() {