sh/bash/main.sh

49 lines
970 B
Bash
Raw Normal View History

2023-05-09 20:09:01 +00:00
#! /usr/bin/env bash
2023-05-15 07:19:43 +00:00
2024-11-13 10:21:37 +00:00
MAIN_USERS_FILE="$(realpath --canonicalize-existing "${BASH_SOURCE[0]}")"
2023-05-15 07:19:43 +00:00
2024-11-13 11:03:00 +00:00
main_get_root() {
dirname "${MAIN_USERS_FILE}"
}
2023-05-12 21:38:42 +00:00
2024-11-12 06:44:21 +00:00
main_link_bashrc() {
2024-11-12 09:14:08 +00:00
local file="/etc/bash.bashrc"
rm --force "${file}"
2024-11-13 08:41:47 +00:00
ln --symbolic "${MAIN_USERS_FILE}" "${file}"
2023-05-12 21:38:42 +00:00
}
2023-05-09 20:09:01 +00:00
2023-05-14 12:46:23 +00:00
# import modules
2024-11-12 06:44:21 +00:00
main_import_modules() {
2024-11-12 09:14:08 +00:00
local file="${1}"
2024-11-13 08:43:27 +00:00
if [ -f "${file}" ]; then
2024-11-13 13:55:20 +00:00
local count ifs module modules path root
2024-11-13 11:41:37 +00:00
path="$(realpath --canonicalize-existing "${file}")"
2024-11-13 10:57:56 +00:00
root="$(dirname "${path}")"
2024-11-13 11:50:49 +00:00
modules="$(find "${root}" -type "f" -name "*.sh" -printf "%P
" | sort)"
2024-11-13 11:41:37 +00:00
ifs="${IFS}"
IFS="
"
2024-11-13 13:55:20 +00:00
count=0
echo
2024-11-13 14:01:02 +00:00
echo ". ${root}"
2024-11-13 11:41:37 +00:00
for module in ${modules}; do
2024-11-13 13:55:20 +00:00
count=$((count + 1))
printf "%02d" "${count}"
echo " ${module%.sh}"
2024-11-13 11:50:49 +00:00
module="${root}/${module}"
2024-11-13 08:43:27 +00:00
if [ "${module}" != "${path}" ]; then
2024-11-12 09:14:08 +00:00
. "${module}"
fi
done
2024-11-13 11:41:37 +00:00
IFS="${ifs}"
2024-11-12 09:14:08 +00:00
return 0
else
log_fatal "No file: ${file}"
return 1
fi
2023-05-09 20:15:40 +00:00
}
2023-05-09 20:09:01 +00:00
2023-05-14 12:46:23 +00:00
# import modules
2024-11-13 08:41:47 +00:00
main_import_modules "${MAIN_USERS_FILE}"