nushell/src/commands/mv.rs

55 lines
1.4 KiB
Rust
Raw Normal View History

use crate::commands::command::RunnablePerItemContext;
2019-08-14 22:08:10 +02:00
use crate::errors::ShellError;
use crate::parser::hir::SyntaxShape;
2019-08-14 22:08:10 +02:00
use crate::parser::registry::{CommandRegistry, Signature};
use crate::prelude::*;
use nu_source::Tagged;
2019-08-14 22:08:10 +02:00
use std::path::PathBuf;
pub struct Move;
#[derive(Deserialize)]
pub struct MoveArgs {
2019-08-21 19:03:59 +02:00
pub src: Tagged<PathBuf>,
pub dst: Tagged<PathBuf>,
}
2019-08-15 07:02:02 +02:00
impl PerItemCommand for Move {
2019-08-14 22:08:10 +02:00
fn name(&self) -> &str {
"mv"
}
fn signature(&self) -> Signature {
Signature::build("mv")
2019-10-28 06:15:35 +01:00
.required(
"source",
SyntaxShape::Pattern,
"the location to move files/directories from",
)
.required(
"destination",
SyntaxShape::Path,
"the location to move files/directories to",
)
2019-08-14 22:08:10 +02:00
}
fn usage(&self) -> &str {
"Move files or directories."
}
fn run(
&self,
call_info: &CallInfo,
_registry: &CommandRegistry,
2019-08-29 05:53:45 +02:00
raw_args: &RawCommandArgs,
_input: Value,
2019-08-24 21:36:19 +02:00
) -> Result<OutputStream, ShellError> {
2019-08-29 05:53:45 +02:00
call_info.process(&raw_args.shell_manager, mv)?.run()
}
2019-08-14 22:08:10 +02:00
}
2019-08-24 21:36:19 +02:00
fn mv(args: MoveArgs, context: &RunnablePerItemContext) -> Result<OutputStream, ShellError> {
2019-08-21 19:03:59 +02:00
let shell_manager = context.shell_manager.clone();
shell_manager.mv(args, context)
2019-08-14 22:08:10 +02:00
}