mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-03 14:37:25 +01:00
6 lines
85 B
Plaintext
6 lines
85 B
Plaintext
# Make directory and change into it.
|
|
|
|
function mcd() {
|
|
mkdir -p "$1" && cd "$1";
|
|
}
|