dip/vendor/github.com/mattn/go-isatty
Paul Lecuq b2ce13bed2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
updated dependencies
2023-01-14 20:50:39 +01:00
..
doc.go first commit 2019-12-22 18:20:45 +01:00
go.test.sh updated and refactored dip project 2020-05-24 18:42:01 +02:00
isatty_bsd.go updated dependencies 2023-01-14 20:50:39 +01:00
isatty_others.go updated dip dependencies 2021-11-12 12:28:10 +01:00
isatty_plan9.go updated dip dependencies 2021-11-12 12:28:10 +01:00
isatty_solaris.go updated dip dependencies 2021-11-12 12:28:10 +01:00
isatty_tcgets.go updated dip dependencies 2021-11-12 12:28:10 +01:00
isatty_windows.go updated dip dependencies 2021-11-12 12:28:10 +01:00
LICENSE first commit 2019-12-22 18:20:45 +01:00
README.md updated and refactored dip project 2020-05-24 18:42:01 +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