2021-09-08 00:10:46 +02:00
|
|
|
//go:build plan9
|
2019-10-30 00:47:56 +01:00
|
|
|
// +build plan9
|
|
|
|
|
|
|
|
package isatty
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IsTerminal returns true if the given file descriptor is a terminal.
|
|
|
|
func IsTerminal(fd uintptr) bool {
|
2019-12-28 15:07:37 +01:00
|
|
|
path, err := syscall.Fd2path(int(fd))
|
2019-10-30 00:47:56 +01: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
|
|
|
|
}
|