2021-10-16 15:47:22 -07:00
|
|
|
//go:build (darwin || freebsd || openbsd || netbsd || dragonfly) && !appengine
|
2017-02-18 14:00:46 -08:00
|
|
|
// +build darwin freebsd openbsd netbsd dragonfly
|
|
|
|
// +build !appengine
|
|
|
|
|
|
|
|
package isatty
|
|
|
|
|
2020-05-23 15:06:21 -07:00
|
|
|
import "golang.org/x/sys/unix"
|
2017-02-18 14:00:46 -08:00
|
|
|
|
|
|
|
// IsTerminal return true if the file descriptor is terminal.
|
|
|
|
func IsTerminal(fd uintptr) bool {
|
2020-05-23 15:06:21 -07:00
|
|
|
_, err := unix.IoctlGetTermios(int(fd), unix.TIOCGETA)
|
|
|
|
return err == nil
|
2017-02-18 14:00:46 -08:00
|
|
|
}
|
2019-03-02 04:04:28 -08:00
|
|
|
|
|
|
|
// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2
|
|
|
|
// terminal. This is also always false on this environment.
|
|
|
|
func IsCygwinTerminal(fd uintptr) bool {
|
|
|
|
return false
|
|
|
|
}
|