Added README.md

This commit is contained in:
2025-02-03 18:14:36 -06:00
parent 0dc32e63b2
commit 4130398fbf

21
README.md Normal file
View File

@@ -0,0 +1,21 @@
# Duplicated
**Duplicated** finds files with the same contents on your computer.
Hashes all files in filter and compares to see if there are any duplicates.
# Build from Source
## Requirements
- Minimum supported `rust`/`cargo` version: `1.78`
## cargo
`$ cargo install --git https://github.com/NMedvesky/duplicated`
# Usage
Check all files in currect directory
`duplicated .`
Check all files larger than 5 megabytes and smaller than 1 gigabyte.
`duplicated --min_size 5M --max_size 1G`
Same as previous example but another way to write it.
`duplicated -s 5m -m 1g`