5 lines
85 B
Text
5 lines
85 B
Text
# Make directory and change into it.
|
|
|
|
function mcd() {
|
|
mkdir -p "$1" && cd "$1";
|
|
}
|