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

14 lines
227 B
Go
Raw Normal View History

2019-07-26 00:53:58 +00:00
// +build linux aix
2020-06-27 14:45:12 +00:00
// +build !js
2019-07-26 00:53:58 +00:00
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
}