markdown 检测重复的图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 检测重复的图像相关的知识,希望对你有一定的参考价值。

# Check the similarities using hash
This command generates a MD5 hash for each of image files and compare all of them to see if the images are identical.

```[bash]
$ find . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 15 > dupes.txt
```

# Find duplicates with specific apps
You can use 'fdupes' to find the duplicated images.

```[bash]
$ fdupes -rSm .
```

If you include the option '-d' it will delete the duplicates (add '-N' to avoid deleting confirmations).

FSlint is also a graphical alternative. This tool finds also other things like bad simlinks and empty directories.

以上是关于markdown 检测重复的图像的主要内容,如果未能解决你的问题,请参考以下文章