7 lines
127 B
Bash
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
|