go-ethereum/vendor/github.com/mattn/go-isatty
2021-09-17 17:59:06 +05:30
..
doc.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
isatty_appengine.go FIx Bad block error. 2021-09-17 17:59:06 +05:30
isatty_bsd.go FIx Bad block error. 2021-09-17 17:59:06 +05:30
isatty_linux.go FIx Bad block error. 2021-09-17 17:59:06 +05:30
isatty_not_windows.go FIx Bad block error. 2021-09-17 17:59:06 +05:30
isatty_solaris.go FIx Bad block error. 2021-09-17 17:59:06 +05:30
isatty_windows.go vendor: update dependencies with github.com/kardianos/govendor 2017-02-16 13:44:09 +01:00
LICENSE Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
README.md FIx Bad block error. 2021-09-17 17:59:06 +05:30

go-isatty

Build Status Coverage Status

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