mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
11 lines
215 B
Bash
11 lines
215 B
Bash
if [ -d "${HOME}/.commonsh" ] ; then
|
|
for file in "${HOME}"/.commonsh/* ; do
|
|
. "${file}"
|
|
done
|
|
fi
|
|
|
|
if [ -d "${HOME}/.ksh" ] ; then
|
|
for file in "${HOME}"/.ksh/* ; do
|
|
. "${file}"
|
|
done
|
|
fi
|