This is a plugin for shrs.
First add this plugin to your dependencies
toml
shrs_output_capture = { version = "0.0.1" }
Then include this plugin when initializing shrs ```rust use shrs::prelude::*; use shrsoutputcapture::OutputCapturePlugin;
let myshell = ShellBuilder::default() .with_plugin(OutputCapturePlugin) .build() .unwrap();
```