Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/rparrett/imdirdiff
- Owner: rparrett
- License: other
- Created: 2023-08-30T01:27:03.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-18T23:48:27.000Z (about 1 year ago)
- Last Synced: 2024-10-15T08:26:03.593Z (30 days ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```