bee/vendor/github.com/mattn/go-isatty
Faissal Elamraoui 7811c335e9 Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00
..
LICENSE Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00
README.md Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00
doc.go Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00
isatty_appengine.go Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00
isatty_bsd.go Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00
isatty_linux.go Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00
isatty_solaris.go Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00
isatty_windows.go Update vendor folder (Delve support) 2017-03-19 23:48:59 +01:00

README.md

go-isatty

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 {
		fmt.Println("Is Not Terminal")
	}
}

Installation

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

License

MIT

Author

Yasuhiro Matsumoto (a.k.a mattn)