dotfiles/.zshrc.d/001-mkcd

5 lines
58 B
Plaintext

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