shitbox/corebox/commands/clear/mod.rs

25 lines
574 B
Rust
Raw Normal View History

2023-01-12 18:33:41 -05:00
use super::Cmd;
2023-01-12 19:00:16 -05:00
use clap::Command;
2023-01-12 18:33:41 -05:00
#[derive(Debug, Default)]
pub struct Clear;
impl Cmd for Clear {
fn cli(&self) -> Command {
Command::new("clear")
.about("clear the terminal's screen")
.author("Nathan Fisher")
.version(env!("CARGO_PKG_VERSION"))
}
fn run(&self, _matches: &clap::ArgMatches) -> Result<(), Box<dyn std::error::Error>> {
2023-01-12 18:33:41 -05:00
print!("\x1b[2J\x1b[H");
print!("\x1b[3J\x1b[H");
Ok(())
}
fn path(&self) -> Option<shitbox::Path> {
Some(shitbox::Path::UsrBin)
2023-01-12 18:33:41 -05:00
}
}