1234567891011121314151617 |
- # shellcheck source=/dev/null
- __source_from() {
- local __f='' __d="${XDG_CONFIG_HOME:-${HOME}/.config}/shell/${1:?}"
- for __f in "${__d}"/*.sh; do
- [ -r "${__f}" ] && . "${__f}"
- done
- }
- __source_from "aliasrc.d"
- __source_from "functions"
- __source_from "private/aliasrc.d"
- __source_from "private/functions"
- unset -f __source_from
|