2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-29 01:58:27 +00:00

19 lines
306 B
Go
Raw Normal View History

2018-04-10 21:42:52 +02:00
package isatty_test
import (
"fmt"
"os"
"github.com/mattn/go-isatty"
)
func Example() {
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")
}
}