GNU sed In Windows and Line Termination Character?

I'm not exactly sure about the Windows/DOS version of sed, but if it is like the version in this question it will magically turn r\n into n for processing. Like in the linked question, you will probably need an extra s/$/\r to put the r back in. I tested.

I'm not exactly sure about the Windows/DOS version of sed, but if it is like the version in this question, it will magically turn \r\n into \n for processing. Like in the linked question, you will probably need an extra s/$/\r/ to put the \r back in. I tested sed -e :a -e '/\\$/N; s/\\\n//; ta; s/$/\r/' in Cygwin, and it seems to work.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions