説明なし

Yasuhiro Matsumoto 9b0bf5f2fc update README.md 7 年 前
_example 45f5d8f695 Add IsCygwinTerminal to check cygwin/msys2 terminal 7 年 前
.travis.yml 14451b27da add .travis.yml 7 年 前
LICENSE f60d253179 Added license file. 9 年 前
README.md 9b0bf5f2fc update README.md 7 年 前
doc.go d8798807d8 godoc 10 年 前
isatty_appengine.go ca19903305 Support for AppEngine classic 9 年 前
isatty_bsd.go 089e34f010 Add dragonfly to bsd build 8 年 前
isatty_linux.go ca19903305 Support for AppEngine classic 9 年 前
isatty_non_windows_test.go 6edd7e33e0 add test for non-Windows 7 年 前
isatty_not_windows.go 45f5d8f695 Add IsCygwinTerminal to check cygwin/msys2 terminal 7 年 前
isatty_solaris.go ca19903305 Support for AppEngine classic 9 年 前
isatty_windows.go 928cf5943f fixes for review 7 年 前
isatty_windows_test.go 05d3780075 add build costraint 7 年 前

README.md

go-isatty

Build Status Coverage Status

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