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
You can do something like this:
find -maxdepth 1 -type d | while read -r i do echo "$i" done