5 lines
58 B
Text
5 lines
58 B
Text
|
# mkdir & cd
|
||
|
function mkcd {
|
||
|
mkdir -p "$@" && cd $_
|
||
|
}
|