Files
linux-toolkit/sh/load.sh
2022-04-27 16:20:36 -05:00

7 lines
127 B
Bash
Executable File

TOOLKIT=/etc/toolkit
# Sources custom shell scripts
for sh in ${TOOLKIT}/sh/custom/*.sh; do
test -r "$sh" && . "$sh"
done