17 releases

0.4.12 Feb 9, 2024
0.4.10 Dec 28, 2023
0.4.9 Jul 6, 2023
0.4.6 Mar 29, 2023
0.2.0 Mar 16, 2022

#14 in Command-line interface

Download history 1013010/week @ 2023-11-25 1068002/week @ 2023-12-02 953508/week @ 2023-12-09 865434/week @ 2023-12-16 541800/week @ 2023-12-23 833368/week @ 2023-12-30 1003595/week @ 2024-01-06 1054211/week @ 2024-01-13 1091044/week @ 2024-01-20 1101909/week @ 2024-01-27 1152639/week @ 2024-02-03 1195535/week @ 2024-02-10 1179789/week @ 2024-02-17 1210836/week @ 2024-02-24 1150143/week @ 2024-03-02 392779/week @ 2024-03-09

4,127,062 downloads per month
Used in 3,963 crates (97 directly)

MIT license

17KB
272 lines

is-terminal

Test whether a given stream is a terminal

Github Actions CI Status crates.io page docs.rs docs

As of Rust 1.70, most users should use the IsTerminal trait in the Rust standard library instead of this crate.

On Unix platforms, this crate now uses libc, so that the implementation matches what's in std. Users wishing to use the rustix-based implementation can use the rustix-is-terminal crate instead.


is-terminal is a simple utility that answers one question:

Is this a terminal?

A "terminal", also known as a "tty", is an I/O device which may be interactive and may support color and other special features. This crate doesn't provide any of those features; it just answers this one question.

On Unix-family platforms, this is effectively the same as the isatty function for testing whether a given stream is a terminal, though it accepts high-level stream types instead of raw file descriptors.

On Windows, it uses a variety of techniques to determine whether the given stream is a terminal.

This crate is derived from the atty crate with PR #51 bug fix and PR #54 port to windows-sys applied. The only additional difference is that the atty crate only accepts stdin, stdout, or stderr, while this crate accepts any stream. In particular, this crate does not access any stream that is not passed to it, in accordance with I/O safety.

Example

use is_terminal::IsTerminal;

fn main() {
    if std::io::stdout().is_terminal() {
        println!("Stdout is a terminal");
    } else {
        println!("Stdout is not a terminal");
    }
}

Testing

This library is tested on both Unix-family and Windows platforms.

To test it on a platform manually, use the provided stdio example program. When run normally, it prints this:

$ cargo run --example stdio
stdin? true
stdout? true
stderr? true

To test stdin, pipe some text to the program:

$ cat | cargo run --example stdio
stdin? false
stdout? true
stderr? true

To test stdout, pipe the program to something:

$ cargo run --example stdio | cat
stdin? true
stdout? false
stderr? true

To test stderr, pipe the program to something redirecting stderr:

$ cargo run --example stdio 2>&1 | cat
stdin? true
stdout? false
stderr? false

Minimum Supported Rust Version (MSRV)

This crate currently works on the version of Rust on Debian stable, which is currently Rust 1.63. This policy may change in the future, in minor version releases, so users using a fixed version of Rust should pin to a specific version of this crate.

Dependencies

~0–10MB
~79K SLoC