nushell/crates/nu-cli/src/commands/pwd.rs

52 lines
1.1 KiB
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;
2019-09-07 17:49:15 +02:00
impl WholeStreamCommand for Pwd {
2019-09-07 17:49:15 +02:00
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)
}
fn examples(&self) -> &[Example] {
&[Example {
description: "Print the current working directory",
example: "pwd",
}]
}
2019-09-07 17:49:15 +02:00
}
pub fn pwd(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
let registry = registry.clone();
let stream = async_stream! {
let shell_manager = args.shell_manager.clone();
let args = args.evaluate_once(&registry).await?;
let mut out = shell_manager.pwd(args)?;
while let Some(l) = out.next().await {
yield l;
}
};
Ok(stream.to_output_stream())
2019-09-07 17:49:15 +02:00
}