5 lines
81 B
Bash
5 lines
81 B
Bash
#!/bin/zsh
|
|
# mkdir & cd
|
|
function mkcd() {
|
|
mkdir -p "$@" && cd "$_" || return
|
|
}
|