qrz/vendor/github.com/mattn/go-isatty
Paul Lecuq 36c5d6f2ed
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
large change on qrz
- web service with json support
- web page
- cron service to update database infos
2020-05-09 19:09:27 +02:00
..
.travis.yml large change on qrz 2020-05-09 19:09:27 +02:00
doc.go large change on qrz 2020-05-09 19:09:27 +02:00
go.mod large change on qrz 2020-05-09 19:09:27 +02:00
go.sum large change on qrz 2020-05-09 19:09:27 +02:00
go.test.sh large change on qrz 2020-05-09 19:09:27 +02:00
isatty_bsd.go large change on qrz 2020-05-09 19:09:27 +02:00
isatty_others.go large change on qrz 2020-05-09 19:09:27 +02:00
isatty_plan9.go large change on qrz 2020-05-09 19:09:27 +02:00
isatty_solaris.go large change on qrz 2020-05-09 19:09:27 +02:00
isatty_tcgets.go large change on qrz 2020-05-09 19:09:27 +02:00
isatty_windows.go large change on qrz 2020-05-09 19:09:27 +02:00
LICENSE large change on qrz 2020-05-09 19:09:27 +02:00
README.md large change on qrz 2020-05-09 19:09:27 +02:00
renovate.json large change on qrz 2020-05-09 19:09:27 +02:00

go-isatty

Godoc Reference Codecov 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