in reply to Setting Input record separator to chunk on paragraphs

You can't use a regex for $/, but you can at least get the data split up by an arbitrary regex:
my @results = split /[\r\n]{2,}/, do { local $/; <STDIN> };

-- Randal L. Schwartz, Perl hacker