周玉环 d906a41c2e first commit há 2 dias atrás
..
.golangci.yml d906a41c2e first commit há 2 dias atrás
LICENSE d906a41c2e first commit há 2 dias atrás
README.md d906a41c2e first commit há 2 dias atrás
console.go d906a41c2e first commit há 2 dias atrás
console_linux.go d906a41c2e first commit há 2 dias atrás
console_unix.go d906a41c2e first commit há 2 dias atrás
console_windows.go d906a41c2e first commit há 2 dias atrás
console_zos.go d906a41c2e first commit há 2 dias atrás
pty_freebsd_cgo.go d906a41c2e first commit há 2 dias atrás
pty_freebsd_nocgo.go d906a41c2e first commit há 2 dias atrás
pty_unix.go d906a41c2e first commit há 2 dias atrás
tc_darwin.go d906a41c2e first commit há 2 dias atrás
tc_freebsd_cgo.go d906a41c2e first commit há 2 dias atrás
tc_freebsd_nocgo.go d906a41c2e first commit há 2 dias atrás
tc_linux.go d906a41c2e first commit há 2 dias atrás
tc_netbsd.go d906a41c2e first commit há 2 dias atrás
tc_openbsd_cgo.go d906a41c2e first commit há 2 dias atrás
tc_openbsd_nocgo.go d906a41c2e first commit há 2 dias atrás
tc_solaris_cgo.go d906a41c2e first commit há 2 dias atrás
tc_solaris_nocgo.go d906a41c2e first commit há 2 dias atrás
tc_unix.go d906a41c2e first commit há 2 dias atrás
tc_zos.go d906a41c2e first commit há 2 dias atrás

README.md

console

PkgGoDev Build Status Go Report Card

Golang package for dealing with consoles. Light on deps and a simple API.

Modifying the current process

current := console.Current()
defer current.Reset()

if err := current.SetRaw(); err != nil {
}
ws, err := current.Size()
current.Resize(ws)

Project details

console is a containerd sub-project, licensed under the Apache 2.0 license. As a containerd sub-project, you will find the:

information in our containerd/project repository.