From 95d1d73a299626731e3bc77e2418d53c08cf2fd3 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Wed, 17 Aug 2022 16:57:57 +0200 Subject: [PATCH] CLI: rewrite the message for minimal file size (#807) --- czkawka_cli/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/czkawka_cli/src/commands.rs b/czkawka_cli/src/commands.rs index 16791a6..c40afce 100644 --- a/czkawka_cli/src/commands.rs +++ b/czkawka_cli/src/commands.rs @@ -22,7 +22,7 @@ pub enum Commands { minimal_file_size: u64, #[clap(short = 'i', long, parse(try_from_str = parse_maximal_file_size), default_value = "18446744073709551615", help = "Maximum size in bytes", long_help = "Maximum size of checked files in bytes, assigning lower value may speed up searching")] maximal_file_size: u64, - #[clap(short = 'c', long, parse(try_from_str = parse_minimal_file_size), default_value = "257144", help = "Minimum cached file size in bytes", long_help = "Minimum size of cached files in bytes, assigning bigger value may speed up will cause that lower amount of files will be cached, but loading of cache will be faster")] + #[clap(short = 'c', long, parse(try_from_str = parse_minimal_file_size), default_value = "257144", help = "Minimum cached file size in bytes", long_help = "Minimum size of cached files in bytes, assigning bigger value may speed up the scan but loading the cache will be slower, assigning smaller value may slow down the scan and some files may need to be hashed again but loading the cache will be faster")] minimal_cached_file_size: u64, #[clap(flatten)] allowed_extensions: AllowedExtensions,