in reply to Scanning for duplicate files
You can verify which files have the same size as others (the list of duplicate files) with this grep:@images = ({Name,'a',Size,2},{Name,'b',Size,3},{Name,'c',Size,2},{Name +,'d',Size,3});
I consider that a file is duplicated when I have checked another with the same size. (I check only the size).my @duplicates = grep{$c{$_->{Size}}++ && $c{$_->{Size}}>1}@images;
Note that I've changed 'name' for 'Name' and 'size' for 'Size' because -w warnsfor (@duplicates) { print join " ", values %$_, "\n"; }
|
|---|