getting closer

This commit is contained in:
2025-04-25 21:04:30 -05:00
parent 56d07f44be
commit 02e622951b
4 changed files with 75 additions and 38 deletions

View File

@@ -33,3 +33,13 @@ echo_if_fail() {
rm ${out} ${err}
return ${retval}
}
dump_arr() {
arr_name="$1"
declare -n arr
arr="${arr_name}"
arr_exp=("${arr[@]}")
test "${#arr_exp}" -gt 0 || return 0
echo_info "${arr_name}"
printf "\t%s\n" "${arr_exp[@]}"
}