go-mtree/vendor/github.com/fatih/color/vendor/github.com/mattn/go-isatty
Vincent Batts 37d776ac40
cli.test: colorize the success/failure
updating and adding vendored source to do it

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2018-08-20 07:57:14 -04:00
..
.travis.yml cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
LICENSE cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
README.md cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
doc.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
example_test.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_appengine.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_bsd.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_linux.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_linux_ppc64x.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_others.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_others_test.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_solaris.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_windows.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00
isatty_windows_test.go cli.test: colorize the success/failure 2018-08-20 07:57:14 -04:00

README.md

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