I know that i can chnage the RS =something in awk.
Is there any way i can change the \n RS to something for muliline pattern in sed
|
Short answer: no, you can't. Sed reads lines of text, not records with fields. Depending on the nature of your text, you could use You could also manipulate the hold space to let you work with multiple lines of text. This is described in, for example, sed & awk by Dougherty and Robbins. It's probably easier just to use |
|||
|
|
|
Do you want to replace all the new line characters using sed?
|
|||
|
|
\nRS to something for muliline pattern in sed" is confusing." Would you mind editing it to make it clearer? Also, an example of input and the output you want would help. – N.N. Feb 5 at 16:48