mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2025-03-04 08:59:18 +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";
|
|
}
|