Totally new to programming (as of this morning) so please bear with me (thanks!)
I have a bash script that stops working after the first while loop.
#part 1
While
do
This
That
The Other
done
#part 2
While
do
MOre
More
More
done
Every arguement above the first loop completes (including the first loop itself) but anything below (incuding the second while loop) doesn't finish.
I know that it isn't a problem with an unending loop... it seems to be something about the While loop that I'm not understanding... but I can't figure it out. I just need arguments below the first while loop to take place.
Any help appreciated. Thanks.