I have an array in my batch file which looks like this:
"port[0] ="
"port[1] = 0"
"port[2] = 3"
"port[3] = 2"
Is there any nice and elegant way to move values one element back, so it'll look like this?:
"port[0] = 0"
"port[1] = 3"
"port[2] = 2"
"port[3] ="
I want something other than just SET port[0] = %port[1]%
, etc?