Sebastiaan van Stijn 75b5c6560f
vendor: github.com/moby/term v0.5.0
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
..
windows vendor: github.com/moby/term v0.5.0
.gitignore vendor: update buildkit with typed errors support
LICENSE vendor: update buildkit with typed errors support
README.md vendor: update buildkit with typed errors support
ascii.go vendor: update buildkit with typed errors support
doc.go vendor: github.com/moby/term v0.5.0
proxy.go vendor: update buildkit with typed errors support
term.go vendor: github.com/moby/term v0.5.0
term_unix.go vendor: github.com/moby/term v0.5.0
term_windows.go vendor: github.com/moby/term v0.5.0
termios_bsd.go vendor: update buildkit to master@9624ab4
termios_nonbsd.go vendor: update buildkit to master@9624ab4
termios_unix.go vendor: github.com/moby/term v0.5.0
termios_windows.go vendor: github.com/moby/term v0.5.0

README.md

term - utilities for dealing with terminals

Test GoDoc Go Report Card

term provides structures and helper functions to work with terminal (state, sizes).

Using term

package main

import (
	"log"
	"os"

	"github.com/moby/term"
)

func main() {
	fd := os.Stdin.Fd()
	if term.IsTerminal(fd) {
		ws, err := term.GetWinsize(fd)
		if err != nil {
			log.Fatalf("term.GetWinsize: %s", err)
		}
		log.Printf("%d:%d\n", ws.Height, ws.Width)
	}
}

Contributing

Want to hack on term? Docker's contributions guidelines apply.

Code and documentation copyright 2015 Docker, inc. Code released under the Apache 2.0 license. Docs released under Creative commons.