https://github.com/rzru/deduper
simple program that deletes duplicate files from a folder
https://github.com/rzru/deduper
Last synced: 4 days ago
JSON representation
simple program that deletes duplicate files from a folder
- Host: GitHub
- URL: https://github.com/rzru/deduper
- Owner: rzru
- Created: 2022-05-18T09:30:30.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-18T10:19:25.000Z (about 3 years ago)
- Last Synced: 2025-02-17T23:12:03.316Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deduper
It's a simple program that helps you to delete duplicated files from a chosen folder. It uses crc32 checksum checking to find out duplicates.
## Usage
```
dedup 0.1.1
rzru
Deletes duplicated files in chosen folderUSAGE:
deduper [OPTIONS]ARGS:
Path to directoryOPTIONS:
-h, --help Print help information
-i, --ignore-dir Delete duplicate files even if they are in different directories (default =
false)
-r, --recursive Process inner directories (default = false)
-V, --version Print version information
```**NOTE**: If you are using debug version with `cargo run` - pass arguments after `--` like this `cargo run -- ~/Downloads`
## License
[MIT](https://opensource.org/licenses/MIT)