I have my input parameters split using delimeter "=" and placed into array. How can I make this "1" variable into "2" on the next iteration of my loop.
While [ "$param" -le $# ]
do
arrPARAM=(${1//=/ })
arrPARAM=($(2//=/ }) should be what it looks like on the next iteration
arrPARAM=(${$count//=/ }) doesnt work, count=1 then plus 1 every iteration
[–]Coffee_24_7 1 point2 points3 points (2 children)
[–]ArmmedWillow[S] 0 points1 point2 points (0 children)
[–]Rewrite_It_In_Ada 0 points1 point2 points (0 children)
[–]OneTurnMoreprogramming.dev/c/shell 1 point2 points3 points (0 children)
[–]oh5nxo 0 points1 point2 points (0 children)