I like to join lines following {st,corridor,tunnel} into one line using AWK or SED
Input
abcd
efgjk
st
wer
dfgh
corridor
weerr
tunnel
twdf
Desired output
abcd
efgjk st
wer
dfgh corridor
weerr tunnel
twdf
|
|
One way using
Results:
|
|||
|
|
|
This might work for you (GNU sed):
|
|||
|
|
|
Or, an awk version that reads the whole file into memory first (not recommended for large files):
I'll leave you with the exercise of doing this one-or-two-lines-at-a-time. :) |
|||
|
|
|
With
|
|||
|
|