The oce
outputs a file that inclues:
Examples are here.
A CLI example is below.
```bash $ cargo install oce $ cargo oce git status
$ git status On branch main
No commits yet
Untracked files:
(use "git add
nothing added to commit but untracked files present (use "git add" to track) ```
A library sample usage is below. The result is the same as above.
```rust use oce::oce; use std::env;
fn main() { let command = "git status".to_string(); oce(&command); } ```
OCE is MIT Licensed.