2019-10-16 22:52:29 +02:00
|
|
|
// +build plan9
|
|
|
|
|
|
|
|
package isatty
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IsTerminal returns true if the given file descriptor is a terminal.
|
|
|
|
func IsTerminal(fd uintptr) bool {
|
2020-01-26 20:40:23 +01:00
|
|
|
path, err := syscall.Fd2path(int(fd))
|
2019-10-16 22:52:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return path == "/dev/cons" || path == "/mnt/term/dev/cons"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2
|
|
|
|
// terminal. This is also always false on this environment.
|
|
|
|
func IsCygwinTerminal(fd uintptr) bool {
|
|
|
|
return false
|
|
|
|
}
|