dotfiles/.config/shell/zshrc.d/6-mkcd.zsh

5 lines
58 B
Bash

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