dotfiles/.config/zsh/6-mkcd

5 lines
58 B
Plaintext

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