mirror of
https://github.com/nushell/nushell
synced 2025-01-09 03:39:03 +00:00
ca0c6eaf58
with the `help` command to explore and list all commands available. Enter will also try to see if the location to be entered is an existing Nu command, if it is it will let you inspect the command under `help`. This provides baseline needed so we can iterate on it.
41 lines
1 KiB
Rust
41 lines
1 KiB
Rust
use crate::commands::command::RunnablePerItemContext;
|
|
use crate::errors::ShellError;
|
|
use crate::parser::registry::{CommandRegistry, Signature};
|
|
use crate::prelude::*;
|
|
use std::path::PathBuf;
|
|
|
|
pub struct Mkdir;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct MkdirArgs {
|
|
pub rest: Vec<Tagged<PathBuf>>,
|
|
}
|
|
|
|
impl PerItemCommand for Mkdir {
|
|
fn name(&self) -> &str {
|
|
"mkdir"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("mkdir").rest(SyntaxType::Path)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Make directories, creates intermediary directories as required."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
call_info: &CallInfo,
|
|
_registry: &CommandRegistry,
|
|
raw_args: &RawCommandArgs,
|
|
_input: Tagged<Value>,
|
|
) -> Result<OutputStream, ShellError> {
|
|
call_info.process(&raw_args.shell_manager, mkdir)?.run()
|
|
}
|
|
}
|
|
|
|
fn mkdir(args: MkdirArgs, context: &RunnablePerItemContext) -> Result<OutputStream, ShellError> {
|
|
let shell_manager = context.shell_manager.clone();
|
|
shell_manager.mkdir(args, context)
|
|
}
|