Here's a quick one in 84 (updated from 86 because I had a pointless !! before eof) (unless I miscounted) -- relying on $^F defaulting to 2:
#--------1---------2---------3---------4---------5---------6---------7 +---------8-------- #234567890123456789012345678901234567890123456789012345678901234567890 +123456789012345678 perl -anF, -le'$h{$F[0]}|=$^F;$^F-=eof}{"@_"=~/[12]$/&&print"$&:$`"whi +le(@_=each%h)' t1.csv t2.csv 1:8 1:6 2:1 2:3 2:5
As always with hashes, I can't promise anything about the order of the output, but that seems to be okay. :)

Update:
79, by using 2-@ARGV instead of $^F
78, by using the implicit print from -p
77, by splitting manually instead of with -a
#--------1---------2---------3---------4---------5---------6---------7 +------- #234567890123456789012345678901234567890123456789012345678901234567890 +1234567 perl -pe'@h{/([^,]*)/}|=2-@ARGV}while(@_=each%h){$_="@_"=~/[12]$/&&"$& +:$`$/"'

In reply to Re: [GOLF] Perl csv diff by truedfx
in thread [GOLF] Perl csv diff by BrowserUk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.