Unknwon 2fd69f13d9 vendor: check in vendors | hace 7 años | |
---|---|---|
.. | ||
LICENSE | hace 7 años | |
README.md | hace 7 años | |
doc.go | hace 7 años | |
isatty_appengine.go | hace 7 años | |
isatty_bsd.go | hace 7 años | |
isatty_linux.go | hace 7 años | |
isatty_solaris.go | hace 7 años | |
isatty_windows.go | hace 7 años |
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)