catp 0.2.0

Print the output of a running process
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Result;
use catp::{catp, CatpArgs};
use clap::Parser;

fn main() -> Result<()> {
    let args = CatpArgs::parse();

    catp(args, &mut std::io::stdout(), &mut std::io::stderr())
}