updated documentation and scripts.

This commit is contained in:
Violet Ash
2024-11-01 14:50:14 -06:00
parent cdac0e0ec8
commit 0a40a0f472
6 changed files with 136 additions and 116 deletions
-9
View File
@@ -1,9 +0,0 @@
SUB=("api=1" "test=2" "portfolio=3")
arraylength=${#SUB[@]}
for (( i=0; i<${arraylength}; i++ ));
do
test="$(echo ${SUB[$i]} | cut -f1 -d=)"
test2="$(echo ${SUB[$i]} | cut -f2 -d=)"
echo $test $test2
done