Re: [dev] ssam rocks! unwrapping paragraphs

2022-03-23 Thread Felix Van der Jeugt
On Tue, Mar 22, 2022, at 9:49 PM, 201009-suckl...@planhack.com wrote: sed is the canonical paragraph mangler. It's worth spending a bit to grok how that is true. tr -d '\r' | sed '/^$/!{H;d;};p;x;s/\n/ /g;' Gutenberg lines are CRLF-terminated so `tr` is needed. "Greg Reagle" wrote: Rig

Re: [dev] ssam rocks! unwrapping paragraphs

2022-03-22 Thread Greg Reagle
On Tue, Mar 22, 2022, at 9:49 PM, 201009-suckl...@planhack.com wrote: > sed is the canonical paragraph mangler. It's worth spending a bit to > grok how that is true. > > tr -d '\r' | sed '/^$/!{H;d;};p;x;s/\n/ /g;' > > Gutenberg lines are CRLF-terminated so `tr` is needed. Right I forgot to m