-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command syntax to list duplicates found in defined input folder and not duplicates within signature database/index #19
Comments
A)
or just:
B)
This invocation should give the desired output:
Note that the first two invocations could be combined as:
C) As above, you have not specified a valid file list so findimagedupes has no files to find. If you fixed that problem (e.g.
This applies even if the second filename is hidden inside a database, as it is in your command. I hope that helps clarify what is happening. |
Thank you for fixing my commands. Since I think that there is not many people who would remember correct switches and use of asterisks and quickly understand findimagedupes manual, here are some example commands that suggests syntax that should be correct: BUILDING index of images:
(to not go recursively into sub-directories, remove " -R", do the same for the following commands too) IMAGE VS INDEX - Duplicates of a single image inside the already built index:
(to show less similar images, replace "-a" by "-t 70% -a") FOLDER VS INDEX - Duplicates between a defined folder and already built index (not showing duplicates that are only inside index, thanks to -a switch):
FOLDER VS INDEX & WITHIN INDEX - ALL - Duplicates between a defined folder and already built index:
(decrease -t switch value to show less similar) WITHIN INDEX - Duplicates within already built index:
If one needs to do custom action with the duplicates found, here are some examples. |
I want to display duplicates across/among folders 1 a 2 which contains duplicates and exclude non cross-folder duplicates, meaning exclude duplicate pairs which are only within STDIN input folder for example).
A) Indexing only folder 1 ---> fails to find folder 2 duplicate/s for some reason:
B) Indexing folder 1 and 2 ---> works to find folder 2 duplicates, yet it is displaying duplicates withing single folder (1) which is unwanted by me, i want to ignore folder 1 because duplicates in it are OK:
C) Indexing only folder 2 ---> fails to find any duplicates:
It is for me very hard to understand correct syntax to achieve mentioned result and the logic of the program regarding input folder/file versus the signature index and its contents.
The text was updated successfully, but these errors were encountered: