mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2026-06-21 15:22:28 +00:00
6 lines
85 B
Plaintext
6 lines
85 B
Plaintext
# Make directory and change into it.
|
|
|
|
function mcd() {
|
|
mkdir -p "$1" && cd "$1";
|
|
}
|