On Friday 6 March 2009, 00:01, Adam Carter wrote:
> > > awk '/^foo/,/^bar/' a
> > >
> > > does the same :)
> >
> > Nice...
>
> Thanks for all these answers. Interesingly when I moved the sed script
> (sed "s/;/\\n/g") from Linux to Solaris it failed as Solaris sed
> doesn't like putting the newline
> > awk '/^foo/,/^bar/' a
> >
> > does the same :)
>
> Nice...
Thanks for all these answers. Interesingly when I moved the sed script (sed
"s/;/\\n/g") from Linux to Solaris it failed as Solaris sed doesn't like
putting the newline character as the "translated to" bit. Installing GNU sed on
the
On Tuesday 3 March 2009, 03:10, Harry Putnam wrote:
> cat a | awk '/^foo/{FLAG=1}\
> FLAG{print} \
> /^bar/{FLAG=""}'
awk '/^foo/,/^bar/' a
does the same :)
3 matches
Mail list logo