status-go/vendor/github.com/mattn/go-isatty/isatty_plan9.go

23 lines
487 B
Go
Raw Normal View History

2020-07-27 18:21:37 +00:00
// +build plan9
package isatty
2020-07-27 18:21:37 +00:00
import (
"syscall"
)
2020-07-27 18:21:37 +00:00
// IsTerminal returns true if the given file descriptor is a terminal.
func IsTerminal(fd uintptr) bool {
2020-07-27 18:21:37 +00:00
path, err := syscall.Fd2path(fd)
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
}