#duplicate #scanner #file #hashing

yanked scan4df

Duplicate File Scanner

0.2.1 Feb 22, 2020
0.2.0 Feb 22, 2020
0.1.5 Feb 17, 2020

#56 in #duplicate

Custom license and maybe LGPL-3.0-or-later

45KB
992 lines

Duplicate File Scanner

Project

Features

This program helps scan for duplicate files on your system. It hashes files and then compares hashes.

Supported hash algorithms: keccak-224, keccak-256, keccak-384, keccak-512, sha3-224, sha3-256, sha3-384, sha3-512, shake-128, shake-256.

Building from source or installing via Cargo

This crate is intended to be used as a program. So default features just contain some documentation, constants and no dependencies.

bin feature contains a binary which uses some dependencies. You can run the program with help command for more details.

Building from source:

~> # Clone a specific version via tag name
~> git clone --branch=x.y.z --depth=1 -- https://bitbucket.org/haibison/scan4df scan4df-x.y.z/
~> cd scan4df-x.y.z/
~> cargo build --release --features=bin

Installing via Cargo:

~> cargo install scan4df --version=x.y.z --features=bin

Dependencies

~155KB