dotfiles/.config/zsh/6-mkcd.zsh

5 lines
58 B
Bash

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