2023-05-09 22:09:01 +02:00
|
|
|
#! /usr/bin/env bash
|
2023-05-15 09:19:43 +02:00
|
|
|
|
|
|
|
MAIN_BASH_FILE="$(realpath "${BASH_SOURCE[0]}")"
|
|
|
|
|
|
|
|
MAIN_BASH_ROOT="$(dirname "${MAIN_BASH_FILE}")"
|
2023-05-12 23:38:42 +02:00
|
|
|
|
2024-11-12 07:44:21 +01:00
|
|
|
main_link_bashrc() {
|
2024-11-12 10:14:08 +01:00
|
|
|
local file="/etc/bash.bashrc"
|
|
|
|
rm --force "${file}"
|
|
|
|
ln --symbolic "${MAIN_BASH_FILE}" "${file}"
|
2023-05-12 23:38:42 +02:00
|
|
|
}
|
2023-05-09 22:09:01 +02:00
|
|
|
|
2023-05-14 14:46:23 +02:00
|
|
|
# import modules
|
2024-11-12 07:44:21 +01:00
|
|
|
main_import_modules() {
|
2024-11-12 10:14:08 +01:00
|
|
|
local file="${1}"
|
|
|
|
if [ -f "${file}" ] ; then
|
|
|
|
local path="$(realpath "${file}")"
|
|
|
|
local root="$(dirname "${path}")"
|
|
|
|
local IFS=$'\n'
|
|
|
|
local modules=($(find "${root}" -type "f" -name "*.sh" | sort))
|
|
|
|
local module
|
|
|
|
for module in "${modules[@]}" ; do
|
|
|
|
if [ "${module}" != "${path}" ] ; then
|
|
|
|
. "${module}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
log_trace "${modules[@]}"
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
log_fatal "No file: ${file}"
|
|
|
|
return 1
|
|
|
|
fi
|
2023-05-09 22:15:40 +02:00
|
|
|
}
|
2023-05-09 22:09:01 +02:00
|
|
|
|
2023-05-14 14:46:23 +02:00
|
|
|
# import modules
|
2023-05-15 18:41:02 +02:00
|
|
|
main_import_modules "${MAIN_BASH_FILE}"
|