mirror of
https://github.com/nushell/nushell.git
synced 2025-03-01 17:01:27 +01:00
52 lines
1.3 KiB
Rust
52 lines
1.3 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::context::CommandRegistry;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Signature, SyntaxShape};
|
|
use nu_source::Tagged;
|
|
use std::path::PathBuf;
|
|
|
|
pub struct Remove;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct RemoveArgs {
|
|
pub rest: Vec<Tagged<PathBuf>>,
|
|
pub recursive: Tagged<bool>,
|
|
#[allow(unused)]
|
|
pub trash: Tagged<bool>,
|
|
}
|
|
|
|
impl WholeStreamCommand for Remove {
|
|
fn name(&self) -> &str {
|
|
"rm"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("rm")
|
|
.switch(
|
|
"trash",
|
|
"use the platform's recycle bin instead of permanently deleting",
|
|
Some('t'),
|
|
)
|
|
.switch("recursive", "delete subdirectories recursively", Some('r'))
|
|
.rest(SyntaxShape::Pattern, "the file path(s) to remove")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Remove file(s)"
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
args.process(registry, rm)?.run()
|
|
}
|
|
}
|
|
|
|
fn rm(args: RemoveArgs, context: RunnableContext) -> Result<OutputStream, ShellError> {
|
|
let shell_manager = context.shell_manager.clone();
|
|
shell_manager.rm(args, &context)
|
|
}
|