import "github.com/mattn/go-isatty"
Package isatty implements interface to isatty
Code:
if isatty.IsTerminal(os.Stdout.Fd()) { fmt.Println("Is Terminal") } else if isatty.IsCygwinTerminal(os.Stdout.Fd()) { fmt.Println("Is Cygwin/MSYS2 Terminal") } else { fmt.Println("Is Not Terminal") }
IsCygwinTerminal return true if the file descriptor is a cygwin or msys2 terminal. This is also always false on this environment.
IsTerminal return true if the file descriptor is terminal.
Package isatty imports 1 packages (graph) and is imported by 786 packages. Updated 2019-12-11. Refresh now. Tools for package owners.