Crates.io | filterm |
lib.rs | filterm |
version | |
source | src |
created_at | 2021-10-27 06:12:22.986891 |
updated_at | 2024-10-29 01:03:24.354157 |
description | Filter terminal data to and from a child process |
homepage | |
repository | https://github.com/taylordotfish/filterm |
max_upload_size | |
id | 472722 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Filterm lets you run a child process while piping all terminal data to and from the child through a custom filter. This lets you modify things like ANSI escape sequences that get sent from the child.
The main way of using Filterm is to define a custom filter by implementing
the Filter
trait, and then call run
.
For an example of Filterm in use, see Monoterm.
Filterm has been tested on GNU/Linux. It may work on other Unix-like operating systems, as it avoids using Linux- and GNU-specific functionality and sticks to POSIX whenever possible.