bottin/vendor/github.com/sirupsen/logrus/terminal_check_unix.go

14 lines
214 B
Go
Raw Normal View History

2022-02-08 20:24:59 +01:00
// +build linux aix
package logrus
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TCGETS
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}