Seeking a grep-like script

Dave Mitchell davem at iabyn.com
Thu Jun 10 13:11:24 UTC 2010


On Thu, Jun 10, 2010 at 01:36:07PM +0100, Timothy Murphy wrote:
> I'm looking for a grep-like script that searches for a given word,
> and returns the paragraphs in which it appears (rather than the lines),
> where a paragraph is defined as the material between 2 blank lines.

perl -ne 'BEGIN { $/="" } print if /someword/' file1 file2 ... 

(setting $/ to the empty string makes perl read in whole paragraphs at a
time)

-- 
I don't want to achieve immortality through my work... I want to achieve
it through not dying.
    -- Woody Allen


More information about the users mailing list