Tsuyoshi Takada <[EMAIL PROTECTED]> wrote: > ------------------- > a > b > delimiter > c > d > delimiter > e > f > ------------------- > > to > > ------------------- > a b > c d > e f > -------------------
You can do this with sed. Append each input line (with trailing spaces, if you like) to the hold space, and then when you see a delimiter line, replace it with the contents of the hold space. paul _______________________________________________ Bug-coreutils mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-coreutils
