mirror of
https://github.com/nushell/nushell
synced 2025-01-06 02:09:10 +00:00
53 lines
1.3 KiB
Rust
53 lines
1.3 KiB
Rust
use crate::commands::command::RunnablePerItemContext;
|
|
use crate::errors::ShellError;
|
|
use crate::parser::hir::SyntaxShape;
|
|
use crate::parser::registry::{CommandRegistry, Signature};
|
|
use crate::prelude::*;
|
|
use std::path::PathBuf;
|
|
|
|
pub struct Move;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct MoveArgs {
|
|
pub src: Tagged<PathBuf>,
|
|
pub dst: Tagged<PathBuf>,
|
|
}
|
|
|
|
impl PerItemCommand for Move {
|
|
fn name(&self) -> &str {
|
|
"mv"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("mv")
|
|
.required(
|
|
"source",
|
|
SyntaxShape::Pattern,
|
|
"the location to move files/directories from",
|
|
)
|
|
.required(
|
|
"destination",
|
|
SyntaxShape::Path,
|
|
"the location to move files/directories to",
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Move files or directories."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
call_info: &CallInfo,
|
|
_registry: &CommandRegistry,
|
|
raw_args: &RawCommandArgs,
|
|
_input: Tagged<Value>,
|
|
) -> Result<OutputStream, ShellError> {
|
|
call_info.process(&raw_args.shell_manager, mv)?.run()
|
|
}
|
|
}
|
|
|
|
fn mv(args: MoveArgs, context: &RunnablePerItemContext) -> Result<OutputStream, ShellError> {
|
|
let shell_manager = context.shell_manager.clone();
|
|
shell_manager.mv(args, context)
|
|
}
|