Merge branch 'master' of git://github.com/mattn/go-isatty
tree: 0a11976b53572e1290697c85a6de868bc4ef51fd
  1. doc.go
  2. isatty_bsd.go
  3. isatty_linux.go
  4. isatty_solaris.go
  5. isatty_windows.go
  6. LICENSE
  7. README.md
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)