mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
12 lines
205 B
Text
12 lines
205 B
Text
![]() |
if [ -d "${HOME}/.commonsh" ] ; then
|
||
|
for file in "${HOME}"/.commonsh/* ; do
|
||
|
. $file
|
||
|
done
|
||
|
fi
|
||
|
|
||
|
if [ -d "${HOME}/.sh" ] ; then
|
||
|
for file in "${HOME}"/.sh/* ; do
|
||
|
. $file
|
||
|
done
|
||
|
fi
|