This commit is contained in:
Michael Zhang 2019-07-17 01:30:13 -05:00
parent deb48ee511
commit 31c7dd0804
No known key found for this signature in database
GPG key ID: 5BAEFE5D04F0CE6C

View file

@ -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")]