mirror of
https://github.com/nushell/nushell.git
synced 2024-12-04 14:25:25 +01:00
8bd3cedce1
* First step in it-expansion * Fix tests * fix clippy warnings
42 lines
1.0 KiB
Rust
42 lines
1.0 KiB
Rust
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 Mkdir;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct MkdirArgs {
|
|
pub rest: Vec<Tagged<PathBuf>>,
|
|
}
|
|
|
|
impl WholeStreamCommand for Mkdir {
|
|
fn name(&self) -> &str {
|
|
"mkdir"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("mkdir").rest(SyntaxShape::Path, "the name(s) of the path(s) to create")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Make directories, creates intermediary directories as required."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
args.process(registry, mkdir)?.run()
|
|
}
|
|
}
|
|
|
|
fn mkdir(args: MkdirArgs, context: RunnableContext) -> Result<OutputStream, ShellError> {
|
|
let shell_manager = context.shell_manager.clone();
|
|
shell_manager.mkdir(args, &context)
|
|
}
|