iperf3exporter/vendor/github.com/mattn/go-isatty
Marvin Preuss 2343c9588a
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
first commit
2021-10-20 10:08:56 +02:00
..
.travis.yml first commit 2021-10-20 10:08:56 +02:00
doc.go first commit 2021-10-20 10:08:56 +02:00
go.test.sh first commit 2021-10-20 10:08:56 +02:00
isatty_bsd.go first commit 2021-10-20 10:08:56 +02:00
isatty_others.go first commit 2021-10-20 10:08:56 +02:00
isatty_plan9.go first commit 2021-10-20 10:08:56 +02:00
isatty_solaris.go first commit 2021-10-20 10:08:56 +02:00
isatty_tcgets.go first commit 2021-10-20 10:08:56 +02:00
isatty_windows.go first commit 2021-10-20 10:08:56 +02:00
LICENSE first commit 2021-10-20 10:08:56 +02:00
README.md first commit 2021-10-20 10:08:56 +02:00
renovate.json first commit 2021-10-20 10:08:56 +02:00

go-isatty

Godoc Reference Codecov Coverage Status Go Report Card

isatty for golang

Usage

package main

import (
	"fmt"
	"github.com/mattn/go-isatty"
	"os"
)

func main() {
	if isatty.IsTerminal(os.Stdout.Fd()) {
		fmt.Println("Is Terminal")
	} else if isatty.IsCygwinTerminal(os.Stdout.Fd()) {
		fmt.Println("Is Cygwin/MSYS2 Terminal")
	} else {
		fmt.Println("Is Not Terminal")
	}
}

Installation

$ go get github.com/mattn/go-isatty

License

MIT

Author

Yasuhiro Matsumoto (a.k.a mattn)

Thanks