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

14 lines
214 B
Go
Raw Normal View History

2019-07-26 02:53:58 +02: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
}
2019-08-14 15:56:32 +02:00