From 0f33b4d6b52bad3a0352fae58f49553a203f3b4b Mon Sep 17 00:00:00 2001 From: sreedev Date: Mon, 9 Jan 2023 11:13:29 -0500 Subject: [PATCH] added interactive param --- src/params.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/params.rs b/src/params.rs index 0148b9b..d5f79f6 100644 --- a/src/params.rs +++ b/src/params.rs @@ -12,9 +12,12 @@ pub struct Params { /// Run Deduplicator on dir different from pwd #[arg(long)] pub dir: Option, - /// Don't use cache for indexing files (default = true) + /// Don't use cache for indexing files (default = false) #[arg(long, short)] pub nocache: bool, + /// Delete files interactively + #[arg(long, short)] + pub interactive: bool } impl Params {