文件名称:屏幕:跨平台使用纯Go清除屏幕的小助手
文件大小:4KB
文件格式:ZIP
更新时间:2024-02-20 19:47:54
go windows bash golang BashGo
屏幕 屏幕包提供了一种简便的方法来清除屏幕,移动光标并以跨平台方式(Linux,OS X和Windows)获取当前窗口的大小。 安装 $ go get -u github.com/inancgumus/screen 清除画面 您可以清除屏幕,然后将光标移动到屏幕的左上角。 这足以创建动画程序(例如,始终更新时钟或进度条)。 package main import ( "fmt" "time" "github.com/inancgumus/screen" ) func main () { // Clear all the characters on the screen screen . Clear () for { // Moves the cursor to the top-left position of the screen screen . MoveTopLeft () // Animate the time always in the same position fmt . Println ( time . Now ()) time . Sl
【文件预览】:
screen-master
----.gitignore(192B)
----go.mod(36B)
----clear_others.go(232B)
----LICENSE(1KB)
----go.sum(0B)
----README.md(1KB)
----example()
--------main.go(264B)
----dimensions.go(257B)
----clear_windows.go(2KB)