SED question: entering a blank line above eight character found
Hello All:
After finding a ":", I would like to enter a blank line above the line
that the colon is found.
How do I do this with SED?
Deguza
Re: SED question: entering a blank line above eight character found
On 2007-12-28, Kompu Kid <deguza [at] hotmail.com> wrote:
>
>
> Hello All:
>
> After finding a ":", I would like to enter a blank line above the line
> that the colon is found.
>
> How do I do this with SED?
>
sed '/:/i\
'
> Deguza