2020-01-20 08:05:32 +01:00
|
|
|
use crate::commands::WholeStreamCommand;
|
|
|
|
use crate::prelude::*;
|
|
|
|
use nu_errors::ShellError;
|
|
|
|
use nu_protocol::Signature;
|
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
pub struct Clear;
|
|
|
|
|
|
|
|
impl WholeStreamCommand for Clear {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"clear"
|
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
2020-01-20 08:05:32 +01:00
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("clear")
|
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
2020-01-20 08:05:32 +01:00
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"clears the terminal"
|
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
2020-01-20 08:05:32 +01:00
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: &CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
clear(args, registry)
|
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
|
|
vec![Example {
|
2020-05-12 03:00:55 +02:00
|
|
|
description: "Clear the screen",
|
|
|
|
example: "clear",
|
2020-05-18 14:56:01 +02:00
|
|
|
result: None,
|
2020-05-12 03:00:55 +02:00
|
|
|
}]
|
|
|
|
}
|
2020-01-20 08:05:32 +01:00
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
2020-01-20 08:05:32 +01:00
|
|
|
fn clear(_args: CommandArgs, _registry: &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())
|
|
|
|
}
|
2020-05-18 14:56:01 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::Clear;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn examples_work_as_expected() {
|
|
|
|
use crate::examples::test as test_examples;
|
|
|
|
|
|
|
|
test_examples(Clear {})
|
|
|
|
}
|
|
|
|
}
|