I have a string containing many words with at least one space between each two. How can I split the string into individual words so I can loop through them?
The stri
Did you try just passing the string variable to a for loop? Bash, for one, will split on whitespace automatically.
for
sentence="This is a sentence." for word in $sentence do echo $word done
This is a sentence.