diff --git a/README.md b/README.md new file mode 100644 index 0000000..072db91 --- /dev/null +++ b/README.md @@ -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`