scan4df 0.1.5

Duplicate File Scanner
Documentation

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