Files
DotfilesOld/zsh/.zsh/functions/mcd
2018-05-09 00:08:38 +02:00

6 lines
85 B
Plaintext

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