#伪终端 #缓冲区 #Linux 内核 #数据 #lets #写入 #tty

ttyecho

ttyecho 是一个库,允许您将数据写入 Linux 内核伪终端缓冲区

3 个版本

0.1.2 2019 年 8 月 13 日
0.1.1 2019 年 8 月 13 日
0.1.0 2019 年 8 月 11 日

#759 in Unix API

MIT 许可证

3KB

ttyecho 是一个库,允许您将数据写入 Linux 内核伪终端缓冲区。该库在非 Linux 平台上无法工作。

示例

fn main() {
    // You can put whatever you want, not only commands.
    let command = "echo ttyecho!";
    // Target tty 
    let tty = "/dev/pts/27";
    // We want to append new line as we want to run echo without user interaction.
    let append_new_line = true;
    
    ttyecho(tty, command, append_new_line);
}

依赖项

~43KB