1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 16:13:26 +00:00
bee/vendor/github.com/mattn/go-isatty/README.md
2017-03-19 23:48:59 +01:00

374 B

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)