Files
logrus/terminal_check_bsd.go
T
2019-04-01 10:15:09 -06:00

14 lines
248 B
Go

// +build darwin dragonfly freebsd netbsd openbsd
package terminal
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TIOCGETA
func IsTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}