Files
DotfilesOld/zsh/functions/mcd
2017-12-31 15:35:11 +01:00

6 lines
85 B
Plaintext

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