I have a sentence like
This is for example
I want to write this to a file such that each word in this sentence is written to a s
Try use:
str="This is for example" echo -e ${str// /\\n} > file.out
Output
> cat file.out This is for example