Find Duplicate Finder is a tool that identifies and lists duplicate files within a specified directory. This utility is written in C and currently designed to run seamlessly on POSIX-compliant systems.
cc -O2 -o duplicate-finder
duplicate-finder <PATH> -b <MIN_SIZE_BYTES>
e.g: find duplicate files in parent directory with minimum size of 100 KB
duplicate-finder .. -b 100000
Example output: