scriptty 0.1.0

A PTY scripting engine for automating interactive terminal sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod expect;
mod key_press;
mod send_input;
mod show;
mod type_text;
mod wait;

pub use expect::Expect;
pub use key_press::KeyPress;
pub use send_input::SendInput;
pub use show::Show;
pub use type_text::TypeText;
pub use wait::Wait;