No Description

Yasuhiro Matsumoto 0e9ddb7c0c Remove line go1.14 5 years ago
.github da60ac76bf Create FUNDING.yml 5 years ago
.travis.yml f4b977dc73 test on osx/linux 6 years ago
LICENSE f60d253179 Added license file. 9 years ago
README.md 9622e0cc9d fix badges 7 years ago
doc.go d8798807d8 godoc 10 years ago
example_test.go b6ee8e8f7b Move example to godoc 7 years ago
go.mod 0e9ddb7c0c Remove line go1.14 5 years ago
go.sum 88ba11cfdc Add missing function for plan9 5 years ago
isatty_android.go 43386f24a3 Add missing method 5 years ago
isatty_bsd.go 0cbfc10b1b remove isatty_others 6 years ago
isatty_others.go e7a4104fd8 Add nacl 5 years ago
isatty_others_test.go 50daa11e01 add test 7 years ago
isatty_plan9.go 88ba11cfdc Add missing function for plan9 5 years ago
isatty_solaris.go 0cbfc10b1b remove isatty_others 6 years ago
isatty_tcgets.go 463fe4a8d0 Add AIX support 5 years ago
isatty_windows.go bf9a1dea19 add support for windows xp using NtQueryObject in ntdll.dll (#40) 5 years ago
isatty_windows_test.go bf9a1dea19 add support for windows xp using NtQueryObject in ntdll.dll (#40) 5 years ago

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