2022-04-01 12:16:46 -04:00
|
|
|
//go:build plan9
|
2020-07-27 20:21:37 +02:00
|
|
|
// +build plan9
|
2018-01-25 14:08:43 +01:00
|
|
|
|
|
|
|
package isatty
|
|
|
|
|
2020-07-27 20:21:37 +02:00
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
)
|
2018-01-25 14:08:43 +01:00
|
|
|
|
2020-07-27 20:21:37 +02:00
|
|
|
// IsTerminal returns true if the given file descriptor is a terminal.
|
2018-01-25 14:08:43 +01:00
|
|
|
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"
|
2018-01-25 14:08:43 +01:00
|
|
|
}
|
2018-11-14 08:03:58 +01:00
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|