1
mirror of https://github.com/rclone/rclone synced 2025-03-22 04:24:24 +01:00

14 lines
246 B
Go
Raw Normal View History

2019-07-26 08:53:58 +08:00
// +build darwin dragonfly freebsd netbsd openbsd
package logrus
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TIOCGETA
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}
2019-08-14 14:56:32 +01:00