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