main/help

This commit is contained in:
Marc Beninca 2024-11-25 17:57:41 +01:00
parent 558c5d82c3
commit d048757efe
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -117,14 +117,18 @@ main_source_file() {
fi fi
} }
_sh_main() { sh_help() {
main_source_file "${ENV}"
main_source_directory "${SH_USER}"
sh_source_check "$(dirname "${ENV}")"
_sh_main_log "" \ _sh_main_log "" \
"sh_… = shell functions" \ "sh_… = shell functions" \
"a__… = aliases" \ "a__… = aliases" \
"u__… = user" "u__… = user"
} }
_sh_main() {
main_source_file "${ENV}"
main_source_directory "${SH_USER}"
sh_source_check "$(dirname "${ENV}")"
sh_help
}
_sh_main _sh_main