#pty #tty #terminal

ptyprocess

A library to work with PTY/TTY on Unix systems

13 releases

0.4.1 Mar 6, 2023
0.4.0 Mar 5, 2023
0.3.0 Dec 11, 2021
0.2.0 Oct 7, 2021
0.1.9 Jul 28, 2021

#247 in Command-line interface

Download history 800/week @ 2023-12-21 944/week @ 2023-12-28 856/week @ 2024-01-04 1089/week @ 2024-01-11 888/week @ 2024-01-18 1069/week @ 2024-01-25 1174/week @ 2024-02-01 1064/week @ 2024-02-08 1212/week @ 2024-02-15 1337/week @ 2024-02-22 1356/week @ 2024-02-29 1515/week @ 2024-03-07 1138/week @ 2024-03-14 1200/week @ 2024-03-21 1226/week @ 2024-03-28 1273/week @ 2024-04-04

5,007 downloads per month
Used in 22 crates (5 directly)

MIT license

29KB
519 lines

ptyprocess Build codecov Crate docs.rs license

A library provides an interface for a unix PTY/TTY.

It aims to work on all major Unix variants.

The library was developed as a backend for a https://github.com/zhiburt/expectrl. If you're interested in a high level operations may you'd better take a look at zhiburt/expectrl.

Usage

use ptyprocess::PtyProcess;
use std::io::{BufRead, BufReader, Result, Write};
use std::process::Command;

fn main() -> Result<()> {
    // spawn a cat process
    let mut process = PtyProcess::spawn(Command::new("cat"))?;

    // create a communication stream
    let mut stream = process.get_raw_handle()?;

    // send a message to process
    writeln!(stream, "Hello cat")?;

    // read a line from the stream
    let mut reader = BufReader::new(stream);
    let mut buf = String::new();
    reader.read_line(&mut buf)?;

    println!("line was entered {buf:?}");

    // stop the process
    assert!(process.exit(true)?);

    Ok(())
}

Dependencies

~1.5MB
~34K SLoC