术语包实现PTY创建和termios获取/设置属性。 它还包含一些方便的功能,用于颜色,SSH <> termios翻译,readCh,读取密码等。 PTY和termios部件特定于Linux。 获取代码 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")) }