No Description

mattn 369ecd8cea Merge pull request #30 from mattn/fix-android 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 18d4608863 Enable go modules 6 years ago
go.sum 18d4608863 Enable go modules 6 years ago
isatty_android.go 96c4833465 Add android build 6 years ago
isatty_bsd.go 0cbfc10b1b remove isatty_others 7 years ago
isatty_linux.go 96c4833465 Add android build 6 years ago
isatty_others.go 3fb116b820 rename isatty_appengine.go to isatty_others.go 7 years ago
isatty_others_test.go 50daa11e01 add test 8 years ago
isatty_solaris.go 0cbfc10b1b remove isatty_others 7 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