misc.sh 82 B

1234567
  1. # shellcheck shell=sh
  2. mkcd() {
  3. command mkdir -p "${1:?}"
  4. cd "${1}" || return
  5. }