quorum/vendor/github.com/mattn/go-isatty
Felix Lange 2c4455b12a 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 vendor: update dependencies with github.com/kardianos/govendor 2017-02-16 13:44:09 +01:00
doc.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
isatty_appengine.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
isatty_bsd.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
isatty_linux.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
isatty_not_windows.go vendor: update dependencies with github.com/kardianos/govendor 2017-02-16 13:44:09 +01:00
isatty_solaris.go Godeps, vendor: convert dependency management to trash (#3198) 2016-10-28 19:05:01 +02:00
isatty_windows.go vendor: update dependencies with github.com/kardianos/govendor 2017-02-16 13:44:09 +01:00

README.md

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