No Description

mattn e1f7b56ace Merge pull request #39 from carlosedp/riscv64 6 years ago
.github da60ac76bf Create FUNDING.yml 6 years ago
.travis.yml f4b977dc73 test on osx/linux 8 years ago
LICENSE f60d253179 Added license file. 10 years ago
README.md 9622e0cc9d fix badges 8 years ago
doc.go d8798807d8 godoc 11 years ago
example_test.go b6ee8e8f7b Move example to godoc 8 years ago
go.mod 5aced80a0d Update x/sys to support Risc-V 6 years ago
go.sum 5aced80a0d Update x/sys to support Risc-V 6 years ago
isatty_android.go 43386f24a3 Add missing method 6 years ago
isatty_bsd.go 0cbfc10b1b remove isatty_others 7 years ago
isatty_others.go e7a4104fd8 Add nacl 6 years ago
isatty_others_test.go 50daa11e01 add test 8 years ago
isatty_solaris.go 0cbfc10b1b remove isatty_others 7 years ago
isatty_tcgets.go 463fe4a8d0 Add AIX support 6 years ago
isatty_windows.go 928cf5943f fixes for review 9 years ago
isatty_windows_test.go 05d3780075 add build costraint 9 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