Categorygithub.com/randomvariable/goterm
repository
0.0.0-20250127144928-40df54235b11
Repository: https://github.com/randomvariable/goterm.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

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/randomvariable/gotermterm"
)

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