Each word on a separate line

前端 未结 7 1336
囚心锁ツ
囚心锁ツ 2021-01-11 09:36

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

7条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-11 10:33

    Try use:

    str="This is for example"
    echo -e ${str// /\\n} > file.out
    

    Output

    > cat file.out 
    This
    is
    for
    example
    

提交回复
热议问题