mirror of
https://github.com/nushell/nushell.git
synced 2024-12-03 05:44:09 +01:00
5f550a355b
* Split OutputStream into ActionStream/OutputStream * Fmt * Missed update * Cleanup helper names * Fmt
45 lines
1.0 KiB
Rust
45 lines
1.0 KiB
Rust
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::Signature;
|
|
use std::process::Command;
|
|
|
|
pub struct Clear;
|
|
|
|
impl WholeStreamCommand for Clear {
|
|
fn name(&self) -> &str {
|
|
"clear"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("clear")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Clears the terminal."
|
|
}
|
|
|
|
fn run(&self, _: CommandArgs) -> Result<InputStream, 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(InputStream::empty())
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Clear the screen",
|
|
example: "clear",
|
|
result: None,
|
|
}]
|
|
}
|
|
}
|