How to find duplicated jpgs by content?
问题 I'd like to find and remove an image in a series of folders. The problem is that the image names are not necessarily the same. What I did was to copy an arbitrary string from the images bytecode and use it like grep -ir 'YA'uu�KU���^H2�Q�W^YSp��.�^H^\^Q��P^T' . But since there are thousands of images this method lasts for ever. Also, some images are created by imagemagic of the original, so can not use size to find them all. So I'm wondering what is the most efficient way to do so? 回答1: