Jonathan H N Chin
Jonathan H N Chin
**A)** `ls -A1 "2/"` returns `s_copy.jpg` but for findimagedupes to be able find the file, the directory name has to be included (i.e. `2/s_copy.jpg`). So your second findimagedupes command should...
Investigate the `--program`, `--script` and `-i` options. --- The `--program` option takes the full path to a program as an argument. So, to call `gwenview` on each group of files,...
I'm glad it was helpful. Note hat it is not guaranteed that files will be listed in any particular order. Personally, I would always rename the files, as you do...
In case it is not clear, `VIEW` is an ordinary shell function. It is nothing specific to findimagedupes. It can contain any commands that you can write in a POSIX...
The reason for the discrepancy is that you seem to be using imagemagick rather than graphicsmagick but they produce different results in this case. Some of the operations have slightly...
You have told findimagedupes to not allow even a single bit difference in the fingerprints (`-t 100%`) but there is a 1 bit difference (`A` =`000000` and `E` = `000100`),...
I'm glad you found an algorithm that works for your imges.
1. Internally, all paths are canonicallsed using `realpath`. By storing an absolute path, if a fingerprint database is moved to a different directory, the files it points to can still...
I just noticed you have `~` in the path. (Unquoted) [tilde-expansion](https://pubs.opengroup.org/onlinepubs/9799919799/utilities/V3_chap02.html#tag_19_06_01) is done by POSIX shells before findimagedupes sees it. Can you give me some examples of working/non-working links (source...
Note that without the slash, if the final element of a path is a symlink (like your `vacation` example), it will simply be ignored. You should see warnings if that...