plugins/base: `mkcd()`

pull/1930/head
John D Pell 2021-09-06 21:54:43 -07:00
parent ea8477198f
commit 9ba76b607a
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ function mkcd() {
example '$ mkcd foo foo1 foo2 fooN'
example '$ mkcd /tmp/img/photos/large /tmp/img/photos/self /tmp/img/photos/Beijing'
group 'base'
mkdir -p -- "$@" && cd -- "${!#}"
mkdir -p -- "$@" && cd -- "${!#}" || return
}
function lsgrep ()