diff --git a/src/main.rs b/src/main.rs index 8bdb1d3..bdd1b7a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -38,6 +38,10 @@ enum Command { /// Trashes directories recursively #[structopt(long = "recursive", short = "r")] recursive: bool, + + /// -f to stay compatible with GNU rm + #[structopt(long = "force", short = "f")] + force: bool, }, #[structopt(name = "restore")]