rexpect 0.7.0

Interact with unix processes/bash the same way as pexpect or Don libes expect does
Documentation
use rexpect::error::Error;
use rexpect::process::WaitStatus;
use rexpect::spawn;

/// The following code emits:
/// cat exited with code 0, all good!
/// cat exited with code 1
/// Output (stdout and stderr): cat: /this/does/not/exist: No such file or directory
fn main() -> Result<(), Error> {
    let p = spawn("cat /etc/passwd", Some(2000))?;
    match p.process().wait() {
        Ok(WaitStatus::Exited(_, 0)) => println!("cat exited with code 0, all good!"),
        _ => println!("cat exited with code >0, or it was killed"),
    }

    let mut p = spawn("cat /this/does/not/exist", Some(2000))?;
    match p.process().wait() {
        Ok(WaitStatus::Exited(_, 0)) => println!("cat succeeded"),
        Ok(WaitStatus::Exited(_, c)) => {
            println!("Cat failed with exit code {c}");
            println!("Output (stdout and stderr): {}", p.exp_eof()?);
        }
        // for other possible return types of wait()
        // see here: https://tailhook.github.io/rotor/nix/sys/wait/enum.WaitStatus.html
        _ => println!("cat was probably killed"),
    }

    Ok(())
}