rwx/sh/main.sh

87 lines
1.5 KiB
Bash
Raw Normal View History

2024-11-18 10:41:12 +00:00
SH_NAME="sh"
2024-11-20 08:42:44 +00:00
SH_SHELL="$(cat /proc/${$}/comm)"
2024-11-19 15:22:07 +00:00
export SH_SHELL
2024-11-18 10:41:12 +00:00
SH_ROOT="/etc/${SH_NAME}"
SH_USER="${HOME}/${SH_NAME}"
SH_MAIN="${SH_ROOT}/main.sh"
[ -n "${ENV}" ] || export ENV="${SH_MAIN}"
2024-11-15 15:43:48 +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}"
if [ -d "${path}" ]; then
2024-11-17 17:11:25 +00:00
local cmd count ifs module modules
2024-11-15 18:10:40 +00:00
modules="$(find "${path}" \
-type "f" \
-name "*.sh" \
-printf "%P
2024-11-13 11:50:49 +00:00
" | sort)"
2024-11-13 11:41:37 +00:00
ifs="${IFS}"
IFS="
"
2024-11-13 13:55:20 +00:00
count=0
2024-11-20 15:47:41 +00:00
_sh_main_log "" \
". ${path}"
2024-11-13 11:41:37 +00:00
for module in ${modules}; do
2024-11-13 13:55:20 +00:00
count=$((count + 1))
2024-11-20 14:48:10 +00:00
#printf "%02d" "${count}"
2024-11-20 15:47:41 +00:00
_sh_main_log "${module%.sh}"
2024-11-15 18:02:22 +00:00
module="${path}/${module}"
if [ "${module}" != "${ENV}" ]; then
2024-11-12 09:14:08 +00:00
. "${module}"
2024-11-19 13:11:11 +00:00
cmd="$(_sh_main_commands "${module}")"
2024-11-17 17:17:06 +00:00
if [ -n "${cmd}" ]; then
[ -n "${CMD}" ] && CMD="${CMD}
"
CMD="${CMD}${cmd}"
fi
2024-11-12 09:14:08 +00:00
fi
done
2024-11-13 11:41:37 +00:00
IFS="${ifs}"
2024-11-12 09:14:08 +00:00
else
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
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-21 10:25:40 +00:00
_sh_main() {
main_source_file "${ENV}"
main_source_directory "${SH_USER}"
_sh_main_log "" \
"sh_… = shell functions" \
"a__… = aliases" \
"u__… = user"
}
2024-11-19 11:32:29 +00:00
2024-11-21 10:25:40 +00:00
_sh_main