nushell/src/commands/mv.rs

43 lines
1.1 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::SyntaxType;
use crate::parser::registry::{CommandRegistry, Signature};
use crate::prelude::*;
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")
.required("source", SyntaxType::Path)
.required("destination", SyntaxType::Path)
.named("file", SyntaxType::Any)
2019-08-14 22:08:10 +02:00
}
fn run(
&self,
call_info: &CallInfo,
_registry: &CommandRegistry,
2019-08-29 05:53:45 +02:00
raw_args: &RawCommandArgs,
_input: Tagged<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
}