This commit is contained in:
Marc Beninca 2025-07-07 00:29:50 +02:00
parent e157a1ecf7
commit 060a84abda
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
4 changed files with 51 additions and 44 deletions

33
sh/test.sh Normal file
View file

@ -0,0 +1,33 @@
# 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
}