modules
This commit is contained in:
parent
6818171cbc
commit
5433ef186a
1 changed files with 8 additions and 2 deletions
|
@ -8,13 +8,19 @@ function link_bashrc {
|
|||
ln --symbolic "${MAIN_FILE}" "${file}"
|
||||
}
|
||||
|
||||
# import modules
|
||||
function main_import_modules {
|
||||
local IFS=$'\n'
|
||||
local modules=($(find "${MAIN_ROOT}" -type 'f' -name '*.sh'))
|
||||
local module
|
||||
for module in "${MAIN_ROOT}"/*.sh ; do
|
||||
for module in "${modules[@]}" ; do
|
||||
if [ "${module}" != "${MAIN_FILE}" ] ; then
|
||||
echo
|
||||
echo "${module}"
|
||||
source "${module}"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
# import modules
|
||||
main_import_modules
|
||||
|
|
Loading…
Reference in a new issue