cleansh 0.1.5

Sanitize your terminal output. One tool. One purpose.
Documentation
1
2
3
4
5
6
7
8
9
10
// cleansh/src/main.rs
// Main entry point for the cleansh application.

use anyhow::Result;
use clap::Parser;

fn main() -> Result<()> {
    let cli = cleansh::Cli::parse();
    cleansh::run(cli)
}