[#145] Use builtin commands in the mkdcd utility
This commit is contained in:
parent
8bcece5895
commit
3cbfa686ab
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ alias pmine='ps -U "$USER" -o pid,%cpu,%mem,command'
|
||||||
|
|
||||||
# Makes a directory and changes to it.
|
# Makes a directory and changes to it.
|
||||||
function mkdcd {
|
function mkdcd {
|
||||||
[[ -n "$1" ]] && mkdir -p "$1" && cd "$1"
|
[[ -n "$1" ]] && builtin mkdir -p "$1" && builtin cd "$1"
|
||||||
}
|
}
|
||||||
compdef _mkdir mkdcd 2> /dev/null
|
compdef _mkdir mkdcd 2> /dev/null
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue