use crate::commands::command::RunnablePerItemContext; use crate::context::CommandRegistry; use crate::prelude::*; use nu_errors::ShellError; use nu_protocol::{CallInfo, Signature, SyntaxShape, Value}; use nu_source::Tagged; use std::path::PathBuf; pub struct Remove; #[derive(Deserialize)] pub struct RemoveArgs { pub rest: Vec>, pub recursive: Tagged, #[allow(unused)] pub trash: Tagged, } impl PerItemCommand 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, call_info: &CallInfo, _registry: &CommandRegistry, raw_args: &RawCommandArgs, _input: Value, ) -> Result { call_info .process(&raw_args.shell_manager, raw_args.ctrl_c.clone(), rm)? .run() } } fn rm(args: RemoveArgs, context: &RunnablePerItemContext) -> Result { let shell_manager = context.shell_manager.clone(); shell_manager.rm(args, context) }