How do I replace a string with a newline using a bash script and sed?

后端 未结 7 2031
夕颜
夕颜 2021-02-13 09:41

I have the following input:

Value1|Value2|Value3|Value4@@ Value5|Value6|Value7|Value8@@ Value9|etc...

In my bash script I would like to replace

7条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-13 10:37

    Finally got it working with:

    sed 's/@@ /'\\\n'/g'
    

    Adding the single quotes around \\n seemed to help for whatever reason

提交回复
热议问题