dotfiles/dot_config/zsh/functions/mcd
2024-09-26 16:35:01 -05:00

6 lines
85 B
Plaintext

# Make directory and change into it.
function mcd() {
mkdir -p "$1" && cd "$1";
}