An extension of pty crate.
https://speakerdeck.com/hibariya/control-a-shell-with-pty-shell
Add this to your Cargo.toml
:
[dependencies]
pty-shell = '0.2.0'
For example, add src/main.rs as following:
extern crate pty_shell;
use pty_shell::{winsize, PtyShell, PtyHandler};
struct Shell;
impl PtyHandler for Shell {
fn input(&mut self, input: &[u8]) {
/* do something with input */
}
fn output(&mut self, output: &[u8]) {
/* do something with output */
}
fn resize(&mut self, winsize: &winsize::Winsize) {
/* do something with winsize */
}
fn shutdown(&mut self) {
/* prepare for shutdown */
}
}
fn main() {
let child = pty::fork().unwrap();
child.exec("bash");
child.proxy(Shell);
child.wait();
}
Use pty_shell::PtyCallback
.
child.proxy(
PtyCallback::new()
.input(|input| { /* do something with input */ })
.output(|output| { /* do something with output */ })
.build()
)
);
- input
- output
- resize
- shutdown
- Fork it ( https://github.com/hibariya/pty-shell/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Copyright (c) 2015 Hika Hibariya
Distributed under the MIT License.