1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
use crate::prelude::*; use nu_engine::{shell::MvArgs, WholeStreamCommand}; use nu_errors::ShellError; use nu_protocol::{Signature, SyntaxShape}; pub struct Mv; impl WholeStreamCommand for Mv { fn name(&self) -> &str { "mv" } fn signature(&self) -> Signature { Signature::build("mv") .required( "source", SyntaxShape::GlobPattern, "the location to move files/directories from", ) .required( "destination", SyntaxShape::FilePath, "the location to move files/directories to", ) } fn usage(&self) -> &str { "Move files or directories." } fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> { mv(args) } fn examples(&self) -> Vec<Example> { vec![ Example { description: "Rename a file", example: "mv before.txt after.txt", result: None, }, Example { description: "Move a file into a directory", example: "mv test.txt my/subdirectory", result: None, }, Example { description: "Move many files into a directory", example: "mv *.txt my/subdirectory", result: None, }, ] } } fn mv(args: CommandArgs) -> Result<ActionStream, ShellError> { let name = args.call_info.name_tag.clone(); let shell_manager = args.shell_manager(); let args = MvArgs { src: args.req(0)?, dst: args.req(1)?, }; shell_manager.mv(args, name) } #[cfg(test)] mod tests { use super::Mv; use super::ShellError; #[test] fn examples_work_as_expected() -> Result<(), ShellError> { use crate::examples::test as test_examples; test_examples(Mv {}) } }