linux shell split string

  
sentence="This is   a sentence."
  
for word in $sentence
  
do
  
echo $word
  
done
  

``

this
  
is
  
a
  
sentence.