File: is_tty.rs

package info (click to toggle)
rust-termion 1.5.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 308 kB
  • sloc: makefile: 10
file content (11 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
extern crate termion;

use std::fs;

fn main() {
    if termion::is_tty(&fs::File::create("/dev/stdout").unwrap()) {
        println!("This is a TTY!");
    } else {
        println!("This is not a TTY :(");
    }
}