gorush/vendor/github.com/mattn/go-isatty
Bo-Yi Wu 23bd0d0c56 feat: switch glide to govendor. (#186)
* feat: switch glide to govendor.

* fix: testing
2017-02-19 15:04:00 +08:00
..
LICENSE feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08:00
README.md feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08:00
doc.go feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08:00
isatty_appengine.go feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08:00
isatty_bsd.go feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08:00
isatty_linux.go feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08:00
isatty_others.go feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08:00
isatty_solaris.go feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08:00
isatty_windows.go feat: switch glide to govendor. (#186) 2017-02-19 15:04:00 +08: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