scatterd-dotfiles/zsh/functions/mcd
2013-02-12 10:22:27 -08:00

5 lines
85 B
Text

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