Files
DotfilesOld/zsh/functions/mcd
2017-08-13 23:17:04 +02:00

6 lines
85 B
Plaintext

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