logrus/terminal_check_bsd.go

14 lines
264 B
Go
Raw Permalink Normal View History

2022-12-29 00:29:13 +00:00
// +build darwin dragonfly freebsd netbsd openbsd hurd
// +build !js
2019-04-01 16:16:11 +00:00
package logrus
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TIOCGETA
2019-04-01 16:16:11 +00:00
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}