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

5 lines
58 B
Plaintext

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