mirror of
https://github.com/nushell/nushell.git
synced 2025-03-06 11:22:01 +01:00
39 lines
885 B
Rust
39 lines
885 B
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Signature, SyntaxShape};
|
|
|
|
pub struct Cd;
|
|
|
|
impl WholeStreamCommand for Cd {
|
|
fn name(&self) -> &str {
|
|
"cd"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("cd").optional(
|
|
"directory",
|
|
SyntaxShape::Path,
|
|
"the directory to change to",
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Change to a new path."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
cd(args, registry)
|
|
}
|
|
}
|
|
|
|
fn cd(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
let shell_manager = args.shell_manager.clone();
|
|
let args = args.evaluate_once(registry)?;
|
|
shell_manager.cd(args)
|
|
}
|