I have a requirement where in, I need to use a certain set of values, under a Nested if condition. I am trying to implement it using a for loop, but not able to put a correct syntax.
eg.
if [ "$i" -ge 353 ] && [ "$i" -lt 385 ]
then
for((m=7001;m<7016;m++))
value=$m
done
fi
Is this a correct syntax?