dotfiles/.zsh.d/33-alias-mkcd

4 lines
58 B
Text

# mkdir & cd
function mkcd {
mkdir -p "$@" && cd $_
}