Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rparrett/imdirdiff

Diffs two directories full of images (obviously)
https://github.com/rparrett/imdirdiff

Last synced: 5 days ago
JSON representation

Diffs two directories full of images (obviously)

Awesome Lists containing this project

README

        

# imdirdiff

A tool for comparing two directories full of image files.

## Usage

```bash
$ find a -type f
a/same.png
a/different.png
a/a_only.png
a/c/recursive.png

$ find b -type f
b/same.png
b/different.png
b/b_only.png
b/c/recursive.png

$ cargo run --release a b
[-] a_only.png
[+] b_only.png
[≠] different.png
[≠] c/recursive.png

$ open imdirdiff-out/index.html
```