그래서 살짝 손 봄

function rmdsstore() {
  find "${@:-.}" \
    -name Library -prune -o -name OrbStack -prune -o \
    -type f -name .DS_Store \
    -print0 | xargs -0 rm
}
0