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

后端 未结 7 2021
夕颜
夕颜 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

    0 讨论(0)
提交回复
热议问题