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 Cpy; #[derive(Deserialize)] pub struct CopyArgs { pub src: Tagged, pub dst: Tagged, pub recursive: Tagged, } impl WholeStreamCommand for Cpy { fn name(&self) -> &str { "cp" } fn signature(&self) -> Signature { Signature::build("cp") .required("src", SyntaxShape::Pattern, "the place to copy from") .required("dst", SyntaxShape::Path, "the place to copy to") .switch( "recursive", "copy recursively through subdirectories", Some('r'), ) } fn usage(&self) -> &str { "Copy files." } fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { args.process(registry, cp)?.run() } fn examples(&self) -> &[Example] { &[ Example { description: "Copy myfile to dir_b", example: "cp myfile dir_b", }, Example { description: "Recursively copy dir_a to dir_b", example: "cp -r dir_a dir_b", }, ] } } pub fn cp(args: CopyArgs, context: RunnableContext) -> Result { let shell_manager = context.shell_manager.clone(); shell_manager.cp(args, &context) }