the simple invoke command for test
This invokes external a command and manipulates standard in out.
You can use std::process::Command
more easily.
```rust use exectarget::exectargetwithenv_in;
let command = "target/debug/exe-fake-grep"; let args = &["--color=always", "-e", "c"]; let envs = vec![("GREP_COLORS", "ms=01;32")]; let inp = b"abcdefg\n" as &[u8];
let oup = exectargetwithenvin(command, args, envs, inp);
asserteq!(oup.stderr, ""); asserteq!(oup.stdout, "ab\u{1b}[01;32m\u{1b}[Kc\u{1b}[m\u{1b}[Kdefg\n"); assert_eq!(oup.status.success(), true); ```
This project is licensed under either of
at your option.