Re: Put two line together (make one line)
Davide Brini <[email protected]>
| Newsgroups | gmane.editors.sed.user |
|---|---|
| Message-ID | <[email protected]> |
On Sat, 18 Aug 2012 19:11:40 +0200, Davide Brini <[email protected]> wrote: > sed '1d;$d;N' Obviously this should be: sed '1d;$d;N;s/\n/ /' (or whatever separator you want to use instead of the space) -- D.