nushell/src/commands/pwd.rs

35 lines
779 B
Rust
Raw Normal View History

2019-09-07 17:49:15 +02:00
use crate::commands::WholeStreamCommand;
use crate::prelude::*;
use nu_errors::ShellError;
2019-11-30 01:21:05 +01:00
use nu_protocol::Signature;
2019-09-07 17:49:15 +02:00
pub struct PWD;
impl WholeStreamCommand for PWD {
fn name(&self) -> &str {
"pwd"
}
fn signature(&self) -> Signature {
Signature::build("pwd")
}
fn usage(&self) -> &str {
"Output the current working directory."
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
pwd(args, registry)
}
}
pub fn pwd(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
let shell_manager = args.shell_manager.clone();
2019-09-07 17:49:15 +02:00
let args = args.evaluate_once(registry)?;
shell_manager.pwd(args)
2019-09-07 17:49:15 +02:00
}