isatty

package module
v0.0.0-...-6764242 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 15, 2024 License: MIT Imports: 1 Imported by: 1

README

isatty

isatty for golang

This is a fork of the project github.com/mattn/go-isatty by Yasuhiro Matsumoto (a.k.a mattn).

The fork was made to get rid of addiction and increase the reliability of my applications. Links to the author and the original repository have been saved.

Usage

package main

import (
	"fmt"
	"github.com/Kwynto/isatty"
	"os"
)

func main() {
	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")
	}
}

Installation

$ go get github.com/Kwynto/isatty

License

MIT

Author

Yasuhiro Matsumoto (a.k.a mattn)

Thanks

Documentation

Overview

Package isatty implements interface to isatty

Example
package main

import (
	"fmt"
	"os"

	"github.com/Kwynto/isatty"
)

func main() {
	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")
	}
}
Output:

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsCygwinTerminal

func IsCygwinTerminal(fd uintptr) bool

IsCygwinTerminal return true if the file descriptor is a cygwin or msys2 terminal. This is also always false on this environment.

func IsTerminal

func IsTerminal(fd uintptr) bool

IsTerminal return true if the file descriptor is terminal.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL