rwx/sh/main.sh

118 lines
1.7 KiB
Bash
Raw Normal View History

2024-11-25 17:32:44 +01:00
# constants
2024-11-25 15:09:58 +01:00
SH_MAIN_NAME="main.sh"
2024-11-18 11:41:12 +01:00
SH_NAME="sh"
SH_ROOT="/etc/${SH_NAME}"
2024-11-25 15:09:58 +01:00
SH_MAIN="${SH_ROOT}/${SH_MAIN_NAME}"
2024-11-18 11:41:12 +01:00
2024-11-25 17:32:44 +01:00
# variables
2024-11-25 17:54:40 +01:00
SH_SHELL="$(cat "/proc/${$}/comm")"
2024-11-25 17:32:44 +01:00
SH_USER="${HOME}/${SH_NAME}"
2024-11-25 18:33:23 +01:00
# private
2024-11-15 16:43:48 +01:00
2024-11-25 16:38:48 +01:00
_sh_ifs_new() {
SH_IFS="${IFS}"
IFS="
"
}
_sh_ifs_pop() {
IFS="${SH_IFS}"
unset SH_IFS
}
2024-11-25 18:33:23 +01:00
_sh_main_log() {
case "${-}" in
*i*)
[ ${#} -gt 0 ] || set -- ""
local line
for line in "${@}"; do
echo "${line}"
done
;;
*) ;;
esac
}
2024-11-25 18:39:25 +01:00
# public
2024-11-25 20:46:09 +01:00
sh_find_extension() {
local extension="${1}"
local root="${2}"
local file="${3}"
2024-11-25 20:40:57 +01:00
set -- \
"${root}" \
2024-11-25 20:46:09 +01:00
-name "*.${extension}" \
2024-11-25 20:40:57 +01:00
-type "f"
[ -n "${file}" ] &&
set -- "${@}" \
-not \
-name "${file}"
find "${@}" \
-printf "%P\n" |
sort
}
2024-11-25 20:46:09 +01:00
sh_find_sh() {
sh_find_extension "sh" "${@}"
}
2024-11-25 21:00:14 +01:00
sh_grep_functions() {
local file="${1}"
grep "()" "${file}" |
cut --delimiter "(" --fields 1
}
2024-11-25 17:57:41 +01:00
sh_help() {
2024-11-25 18:25:13 +01:00
sh_log \
2024-11-21 11:25:40 +01:00
"sh_… = shell functions" \
"a__… = aliases" \
"u__… = user"
}
2024-11-19 12:32:29 +01:00
2024-11-25 22:21:01 +01:00
sh_source_directory() {
local path="${1}"
[ -d "${path}" ] ||
return 1
local cmd count module modules
modules="$(sh_find_sh "${path}" "${SH_MAIN_NAME}")"
_sh_ifs_new
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_grep_functions "${module}")"
if [ -n "${cmd}" ]; then
[ -n "${CMD}" ] && CMD="${CMD}
"
CMD="${CMD}${cmd}"
fi
done
_sh_ifs_pop
}
# main
2024-11-25 18:09:03 +01:00
sh_main() {
2024-11-25 22:21:01 +01:00
if ! sh_source_directory "${SH_ROOT}"; then
2024-11-25 18:51:24 +01:00
_sh_main_log "Not a directory: ${SH_ROOT}"
return 1
fi
2024-11-25 22:21:01 +01:00
sh_source_directory "${SH_USER}"
2024-11-25 18:25:13 +01:00
sh_log
2024-11-25 18:48:22 +01:00
sh_shellcheck "${SH_ROOT}"
2024-11-25 18:25:13 +01:00
sh_log
2024-11-25 17:57:41 +01:00
sh_help
}
2024-11-25 18:09:03 +01:00
sh_main