mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
12 lines
207 B
Text
12 lines
207 B
Text
![]() |
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
|