5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 18:22:30 +00:00
matterbridge/vendor/github.com/mattn/go-isatty
2020-01-09 21:02:56 +01:00
..
.travis.yml Update vendor, move to labstack/echo/v4 Fixes #698 2019-01-31 17:06:36 +01:00
doc.go Update vendor 2017-02-18 23:11:48 +01:00
go.mod Update dependencies (#975) 2020-01-09 21:02:56 +01:00
go.sum Update dependencies (#975) 2020-01-09 21:02:56 +01:00
isatty_android.go Update vendor (#852) 2019-06-16 23:33:25 +02:00
isatty_bsd.go Use whatsapp forks (#750) 2019-03-02 13:04:28 +01:00
isatty_others.go Update vendor (#852) 2019-06-16 23:33:25 +02:00
isatty_plan9.go Update dependencies (#975) 2020-01-09 21:02:56 +01:00
isatty_solaris.go Use whatsapp forks (#750) 2019-03-02 13:04:28 +01:00
isatty_tcgets.go Update vendor (#852) 2019-06-16 23:33:25 +02:00
isatty_windows.go Update dependencies (#975) 2020-01-09 21:02:56 +01:00
LICENSE Update vendor 2017-02-18 23:11:48 +01:00
README.md Update vendor, move to labstack/echo/v4 Fixes #698 2019-01-31 17:06:36 +01: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