24 lines
509 B
Go
Raw Normal View History

2022-04-01 12:16:46 -04:00
//go:build plan9
2020-07-27 20:21:37 +02:00
// +build plan9
package isatty
2020-07-27 20:21:37 +02:00
import (
"syscall"
)
2020-07-27 20:21:37 +02:00
// IsTerminal returns true if the given file descriptor is a terminal.
func IsTerminal(fd uintptr) bool {
2021-10-19 09:43:41 -04:00
path, err := syscall.Fd2path(int(fd))
2020-07-27 20:21:37 +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
}