您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
zeripath 704da08fdc
Better logging (#6038) (#6095)
5 年前
..
.travis.yml Better logging (#6038) (#6095) 5 年前
LICENSE Better logging (#6038) (#6095) 5 年前
README.md Better logging (#6038) (#6095) 5 年前
doc.go Better logging (#6038) (#6095) 5 年前
go.mod Better logging (#6038) (#6095) 5 年前
go.sum Better logging (#6038) (#6095) 5 年前
isatty_android.go Better logging (#6038) (#6095) 5 年前
isatty_bsd.go Better logging (#6038) (#6095) 5 年前
isatty_linux.go Better logging (#6038) (#6095) 5 年前
isatty_others.go Better logging (#6038) (#6095) 5 年前
isatty_solaris.go Better logging (#6038) (#6095) 5 年前
isatty_windows.go Better logging (#6038) (#6095) 5 年前

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