Files
linux-toolkit/sh/load.sh
2022-01-26 19:47:11 -06:00

7 lines
127 B
Bash

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