On Fri, 8 Jun 2012 10:03:09 +0100 Ethan Grammatikidis <[email protected]> wrote:
> On Thu, 7 Jun 2012 15:05:13 -0400 > erik quanstrom <[email protected]> wrote: > > > do you mean that instead of matching lines you want to match records > > delimited > > by \u2424? > > > Also awk 'RS=', or awk -F  where -F is field separator. > my bad, awk -v 'RS=' or put RS= in the BEGIN block. You can also set FS instead of using -F if you like.
