From 50b841908ec465a2e527264910773c66a121e1c6 Mon Sep 17 00:00:00 2001 From: Andrew Sims Date: Tue, 3 Feb 2026 20:54:14 -0500 Subject: [PATCH] Update README for hashhunter executable --- Cargo.toml | 4 ++-- README.md | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d833af6..7b8ea60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ categories = [ "cryptography", "filesystem", ] -default-run = "hh" +default-run = "hashhunter" [dependencies] blake2 = "0.10" @@ -38,5 +38,5 @@ tempfile = "3.10" pedantic = "deny" [[bin]] -name = "hh" +name = "hashhunter" path = "src/main.rs" diff --git a/README.md b/README.md index c80e570..99e444d 100644 --- a/README.md +++ b/README.md @@ -31,19 +31,19 @@ cargo install hash-hunter Search a directory for a SHA-256 hash (default): ```bash -hash-hunter --dir ./data --hash +hashhunter --dir ./data --hash ``` Provide a file name to shortcut hashing when possible: ```bash -hash-hunter --dir ./data --hash --name report.pdf +hashhunter --dir ./data --hash --name report.pdf ``` Use a different algorithm: ```bash -hash-hunter --dir ./data --algo sha3-256 --hash +hashhunter --dir ./data --algo sha3-256 --hash ``` Batch mode (one target per line): @@ -55,13 +55,13 @@ Batch mode (one target per line): ``` ```bash -hash-hunter --dir ./data --algo sha256 --batch batch.txt +hashhunter --dir ./data --algo sha256 --batch batch.txt ``` Write results to a text file: ```bash -hash-hunter --dir ./data --hash --output results.txt +hashhunter --dir ./data --hash --output results.txt ``` ## Output