package
Version:
v0.9.18
Opens a new window with list of versions in this module.
Published: May 9, 2015
License: LGPL-2.1-or-later
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
go-isatty
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 {
fmt.Println("Is Not Terminal")
}
}
Installation
$ go get github.com/mattn/go-isatty
License
MIT
Author
Yasuhiro Matsumoto (a.k.a mattn)
Documentation
¶
Package isatty implements interface to isatty
IsTerminal return true if the file descriptor is terminal.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.