Hello,

I am looking for the command to search recursively through a directory and find matching files in the same directory with the exact same filesize.

For Example:

Code:
/
  /a
    a.mp3 (4.1 megs)
    a1.mp3 (4.1 megs)
  /b
    b.mp3 (3.2 megs)
  /c
    b.mp3 (3.2 megs)
    c.mp3 (5.2 megs)
    c2.mp3 (5.2 megs)
Would match a.mp3, a1.mp3, c.mp3, c2.mp3

Doesn't match the duplicate b's because they in different subfolders. Thanks very much.