1
0
mirror of https://github.com/beego/bee.git synced 2024-07-01 03:34:14 +00:00
bee/vendor/github.com/mattn/go-isatty/README.md

38 lines
374 B
Markdown
Raw Normal View History

2017-03-19 22:45:54 +00:00
# go-isatty
isatty for golang
## Usage
```go
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)