A simple anonymous UNIX pipe type.
The probably easiest way to create a pipe is by parsing a command string:
```rust use apipe::CommandPipe;
let mut pipe = CommandPipe::tryfrom(r#"echo "This is a test." | grep -Eo \w\w\sa[^.]*"#)?; let output = pipe.spawnwith_output()?;
asserteq!(output.stdout(), "is a test\n".asbytes());
``
This requires the
parser` feature to be enabled.
Create the individual Commands and then contruct a pipe from them:
```rust use apipe::Command;
let mut pipe = Command::parsestr(r#"echo "This is a test.""#)? | Command::parsestr(r#"grep -Eo \w\w\sa[^.]*"#)?;
// or:
let mut pipe = Command::new("echo").arg("This is a test.") | Command::new("grep").args(&["-Eo", r"\w\w\sa[^.]*"]);
let output = pipe.spawnwithoutput()?;
asserteq!(output.stdout(), "is a test\n".asbytes()); ```
Command
s can also be constructed manually if you want:
rust
let mut command = Command::new("ls").arg("-la");
There is also a conventional builder syntax:
```rust use apipe::CommandPipe;
let output = apipe::CommandPipe::new() .addcommand("echo") .arg("This is a test.") .addcommand("grep") .args(&["-Eo", r"\w\w\sa[^.]*"]) .spawnwithoutput()?;
asserteq!(output.stdout(), "is a test\n".asbytes()); ```