2019-10-27 12:04:31 -04:00
|
|
|
// +build darwin freebsd openbsd netbsd dragonfly
|
|
|
|
// +build !appengine
|
|
|
|
|
|
|
|
package isatty
|
|
|
|
|
2020-01-25 14:44:51 -05:00
|
|
|
import "golang.org/x/sys/unix"
|
2019-10-27 12:04:31 -04:00
|
|
|
|
|
|
|
// IsTerminal return true if the file descriptor is terminal.
|
|
|
|
func IsTerminal(fd uintptr) bool {
|
2020-01-25 14:44:51 -05:00
|
|
|
_, err := unix.IoctlGetTermios(int(fd), unix.TIOCGETA)
|
|
|
|
return err == nil
|
2019-10-27 12:04:31 -04:00
|
|
|
}
|
2019-10-29 19:47:56 -04: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
|
|
|
|
}
|