Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
The sentence "Is there any way i can change the \n RS 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

2 Answers

up vote 1 down vote accepted

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 tr to first change all \ns to an unused character and your desired (single-character) record separator to \n. Make the changes you want in sed, then use tr to change the separators back.

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 awk, though.

share|improve this answer

Do you want to replace all the new line characters using sed?
Then do this. If not explain what do you want

 sed -e :a -e N -e 's/\n/|/g' -e '$!ba' file
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.