行を単語に分割したいと思います。私はこれがこれでできることを知っています
For word in $line; do echo $word; done
しかし、私は3〜3語のグループを作りたいです。だから私の質問は、どうすれば行を3〜3語のグループに分割できますか?
例えば
Input : I am writing this line for testing the code.
Output :
I am writing
this line for
testing the code.