open-vault/vendor/github.com/mattn/go-isatty
Jeff Mitchell 07dfc1da27 Bump deps
2017-11-07 11:57:05 -05:00
..
doc.go
isatty_appengine.go Bump deps 2017-03-30 20:03:13 -04:00
isatty_bsd.go
isatty_linux.go Bump deps 2017-10-27 15:06:04 -04:00
isatty_linux_ppc64x.go Bump deps 2017-10-27 15:06:04 -04:00
isatty_others.go Bump deps 2017-11-07 11:57:05 -05:00
isatty_solaris.go
isatty_windows.go
LICENSE
README.md Bump deps 2017-03-30 20:03:13 -04:00

go-isatty

Godoc Reference Build Status Coverage Status Go Report Card

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 if isatty.IsCygwinTerminal(os.Stdout.Fd()) {
		fmt.Println("Is Cygwin/MSYS2 Terminal")
	} else {
		fmt.Println("Is Not Terminal")
	}
}

Installation

$ go get github.com/mattn/go-isatty

License

MIT

Author

Yasuhiro Matsumoto (a.k.a mattn)

Thanks