rwx/sh/test.sh
2025-07-07 00:29:50 +02:00

33 lines
492 B
Bash

# test
# module
# * code
# * doc
# ╭──────┬──────╮
# │ test │ code │
# ╰──────┴──────╯
# ╭──────┬─────╮
# │ test │ doc │
# ╰──────┴─────╯
rwx_test_doc() {
local item
set \
"main" \
"alias/git" \
\
"RWX_MAIN_NAME" \
\
"_rwx_code" \
\
"rwx_cache" \
\
"alias/batcat" \
"b" \
for item in "${@}"; do
echo
rwx_code_doc "${item}"
done
}