vikunja/vendor/github.com/mattn/go-isatty
kolaente 6120db5068
continuous-integration/drone/pr Build is failing Details
Updated swaggo version
2019-10-14 00:26:32 +02:00
..
.travis.yml Move the crudhandler to own repo (#27) 2018-11-30 23:26:56 +00:00
LICENSE initial commit 2018-06-10 11:11:42 +02:00
README.md initial commit 2018-06-10 11:11:42 +02:00
doc.go initial commit 2018-06-10 11:11:42 +02:00
go.mod Updated swaggo version 2019-10-14 00:26:20 +02:00
go.sum Updated swaggo version 2019-10-14 00:26:20 +02:00
isatty_android.go Updated handler config (#63) 2019-03-24 09:13:40 +00:00
isatty_bsd.go Updated handler config (#63) 2019-03-24 09:13:40 +00:00
isatty_others.go Update echo (#82) 2019-06-22 21:51:58 +00:00
isatty_plan9.go Updated swaggo version 2019-10-14 00:26:32 +02:00
isatty_solaris.go Updated handler config (#63) 2019-03-24 09:13:40 +00:00
isatty_tcgets.go Update echo (#82) 2019-06-22 21:51:58 +00:00
isatty_windows.go Updated swaggo version 2019-10-14 00:26:20 +02: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