5 lines
83 B
Plaintext
5 lines
83 B
Plaintext
# Create a new directory and enter it
|
|
function mk() {
|
|
mkdir -p "$@" && cd "$@"
|
|
}
|