mirror of
https://github.com/nushell/nushell
synced 2025-01-24 10:55:17 +00:00
57 lines
1.3 KiB
Rust
57 lines
1.3 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::Signature;
|
|
use std::process::Command;
|
|
|
|
pub struct Clear;
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for Clear {
|
|
fn name(&self) -> &str {
|
|
"clear"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("clear")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"clears the terminal"
|
|
}
|
|
|
|
async fn run(&self, _: CommandArgs, _: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
if cfg!(windows) {
|
|
Command::new("cmd")
|
|
.args(&["/C", "cls"])
|
|
.status()
|
|
.expect("failed to execute process");
|
|
} else if cfg!(unix) {
|
|
Command::new("/bin/sh")
|
|
.args(&["-c", "clear"])
|
|
.status()
|
|
.expect("failed to execute process");
|
|
}
|
|
Ok(OutputStream::empty())
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Clear the screen",
|
|
example: "clear",
|
|
result: None,
|
|
}]
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::Clear;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(Clear {})
|
|
}
|
|
}
|