Merge pull request #8 from google/revert-7-support-darwin

Revert "support macos"
tree: 054887d358576c75af95af050f2c6ce0f85e4761
  1. .circleci/
  2. example/
  3. term/
  4. AUTHORS
  5. CONTRIBUTING
  6. LICENSE
  7. README.md
README.md

CircleCI

The term package implements PTY creation and termios get/set attributes. It also contains some convenience functions for colors, SSH <> termios translations, readCh , reading passwords etc.

The PTY and termios parts are Linux specific.

Get the code

go get github.com/google/goterm/term

package main

import (
  "fmt"

  "github.com/google/goterm/term"
)

func main() {
  fmt.Println(term.Blue("Hello blue world"))
}