I have a bash script in which I need to iterate over each line of the ouput of the find command, but it appears that I am iterating over each Word (space delimited) from the
Since you aren't using any of the more advanced features of find, you can use a simple pattern to iterate over the subdirectories:
find
for i in ./*/; do echo "$i" done