Unknwon 2fd69f13d9 vendor: check in vendors | il y a 7 ans | |
---|---|---|
.. | ||
LICENSE | il y a 7 ans | |
README.md | il y a 7 ans | |
doc.go | il y a 7 ans | |
isatty_appengine.go | il y a 7 ans | |
isatty_bsd.go | il y a 7 ans | |
isatty_linux.go | il y a 7 ans | |
isatty_solaris.go | il y a 7 ans | |
isatty_windows.go | il y a 7 ans |
isatty for golang
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")
}
}
$ go get github.com/mattn/go-isatty
MIT
Yasuhiro Matsumoto (a.k.a mattn)