rwx/sh/main.sh

135 lines
2.1 KiB
Bash
Raw Normal View History

2024-11-25 16:32:44 +00:00
# constants
2024-11-25 14:09:58 +00:00
SH_MAIN_NAME="main.sh"
2024-11-18 10:41:12 +00:00
SH_NAME="sh"
SH_ROOT="/etc/${SH_NAME}"
2024-11-25 14:09:58 +00:00
SH_MAIN="${SH_ROOT}/${SH_MAIN_NAME}"
2024-11-18 10:41:12 +00:00
2024-11-25 16:32:44 +00:00
# variables
2024-11-25 16:54:40 +00:00
SH_SHELL="$(cat "/proc/${$}/comm")"
2024-11-25 16:32:44 +00:00
SH_USER="${HOME}/${SH_NAME}"
# functions
2024-11-15 15:43:48 +00:00
2024-11-25 15:38:48 +00:00
_sh_ifs_new() {
SH_IFS="${IFS}"
IFS="
"
}
_sh_ifs_pop() {
IFS="${SH_IFS}"
unset SH_IFS
}
2024-11-25 12:28:42 +00:00
sh_source_check() {
2024-11-25 16:17:05 +00:00
local root="${1}"
local file module modules
file="$(mktemp)"
modules="$(sh_source_find "${root}")"
2024-11-25 15:38:48 +00:00
_sh_ifs_new
2024-11-25 14:33:18 +00:00
for module in ${modules}; do
2024-11-25 16:17:05 +00:00
echo ". \"${root}/${module}\"" >>"${file}"
2024-11-25 14:33:18 +00:00
done
2024-11-25 15:38:48 +00:00
_sh_ifs_pop
2024-11-25 12:56:01 +00:00
shellcheck \
--check-sourced \
2024-11-25 16:17:05 +00:00
--enable "all" \
--exclude "3043" \
--external-sources \
--shell "dash" \
2024-11-25 12:56:01 +00:00
"${file}"
2024-11-25 12:28:42 +00:00
rm "${file}"
}
2024-11-25 13:45:16 +00:00
sh_source_find() {
local root="${1}"
local file="${2}"
set -- \
"${root}" \
-name "*.sh" \
-type "f"
[ -n "${file}" ] &&
set -- "${@}" \
-not \
-name "${file}"
find "${@}" \
2024-11-25 13:52:47 +00:00
-printf "%P\n" |
sort
2024-11-25 13:45:16 +00:00
}
2024-11-19 13:11:11 +00:00
_sh_main_commands() {
2024-11-17 17:11:25 +00:00
local file="${1}"
2024-11-17 20:46:01 +00:00
grep "()" "${file}" |
2024-11-17 17:11:25 +00:00
cut --delimiter "(" --fields 1
}
2024-11-20 15:47:41 +00:00
_sh_main_log() {
case "${-}" in
*i*)
local argument
for argument in "${@}"; do
echo "${argument}"
done
;;
*) ;;
esac
}
2024-11-15 18:06:14 +00:00
main_source_directory() {
2024-11-15 18:02:22 +00:00
local path="${1}"
2024-11-25 15:31:59 +00:00
if [ ! -d "${path}" ]; then
2024-11-20 15:47:41 +00:00
_sh_main_log "Not a directory: ${path}"
2024-11-12 09:14:08 +00:00
return 1
fi
2024-11-25 16:17:05 +00:00
local cmd count module modules
2024-11-25 15:31:59 +00:00
modules="$(sh_source_find "${path}" "${SH_MAIN_NAME}")"
2024-11-25 15:38:48 +00:00
_sh_ifs_new
2024-11-25 15:31:59 +00:00
count=0
_sh_main_log "" \
". ${path}"
for module in ${modules}; do
count=$((count + 1))
_sh_main_log "$(printf "%02d" "${count}") ${module%.sh}"
module="${path}/${module}"
# shellcheck disable=SC1090
. "${module}"
cmd="$(_sh_main_commands "${module}")"
if [ -n "${cmd}" ]; then
[ -n "${CMD}" ] && CMD="${CMD}
"
CMD="${CMD}${cmd}"
fi
done
2024-11-25 15:38:48 +00:00
_sh_ifs_pop
2023-05-09 20:15:40 +00:00
}
2023-05-09 20:09:01 +00:00
2024-11-15 18:06:14 +00:00
main_source_file() {
2024-11-15 18:02:22 +00:00
local path="${1}"
if [ -f "${path}" ]; then
2024-11-15 18:11:16 +00:00
main_source_directory "$(dirname "${path}")"
2024-11-15 18:02:22 +00:00
else
2024-11-20 15:47:41 +00:00
_sh_main_log "Not a file: ${path}"
2024-11-15 18:02:22 +00:00
return 1
fi
}
2024-11-25 16:57:41 +00:00
sh_help() {
2024-11-21 10:25:40 +00:00
_sh_main_log "" \
"sh_… = shell functions" \
"a__… = aliases" \
"u__… = user"
}
2024-11-19 11:32:29 +00:00
2024-11-25 16:57:41 +00:00
_sh_main() {
main_source_file "${ENV}"
main_source_directory "${SH_USER}"
sh_source_check "$(dirname "${ENV}")"
sh_help
}
2024-11-21 10:25:40 +00:00
_sh_main