1
mirror of https://github.com/rclone/rclone synced 2025-04-24 23:29:49 +02:00
2019-08-14 16:15:34 +01:00

14 lines
214 B
Go

// +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
}