Help for this page
Select Code to Download
Select
or
download this
perl -e 'print "aa\r\nab\r\n\r\naa\nbb\n"' >test
Select
or
download this
perl -e '$/="\r\n\r\n"; print "\tMy item: $_" while (<>);' <test
Select
or
download this
My item: aa ab My item: aa bb
Select
or
download this
perl -e 'undef $/;@a=split(/\r\n\r\n/,<>); print join "\t My item: ", @a;' <test