Remove a wrong builtin call in mkdcd
mkdir is not a builtin command.
This commit is contained in:
parent
aa925d22b4
commit
84a6c19c2b
|
@ -15,7 +15,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" ]] && builtin mkdir -p "$1" && builtin cd "$1"
|
[[ -n "$1" ]] && mkdir -p "$1" && builtin cd "$1"
|
||||||
}
|
}
|
||||||
compdef '_path_files -/' mkdcd 2> /dev/null
|
compdef '_path_files -/' mkdcd 2> /dev/null
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue