英文:
How to clear last line in terminal with Golang
问题
我正在构建一个CLI应用程序(在Linux上),用户需要选择某个选项,然后我需要清除上一行。
我尝试了几种方法:
fmt.Print("\r")
fmt.Print("3[1")
光标会回到行的开头,但是并没有清除上一行的文本。
我在这里漏掉了什么?
英文:
I'm building CLI app (on Linux) where user has to choose something and then I have to clear last line.
I tried several things:
fmt.Print("\r")
fmt.Print("3[1")
And the cursor goes back to beginning of line, but do not clear the text from the last line.
What am I missing here?
答案1
得分: 2
你可以这样使用它:
fmt.Printf("3[1A3[K")
\033[1A
- 上移一行
\033[K
- 删除该行
例如:
fmt.Println("hello")
fmt.Println("world")
fmt.Printf("3[1A3[K")
将只输出 hello
,因为 world
将被删除。
你可以在这里阅读更多关于 ASCII 转义的内容:https://tldp.org/HOWTO/Bash-Prompt-HOWTO/x361.html
英文:
You can use it that way
fmt.Printf("3[1A3[K")
\033[1A
- one line up
<br>
\033[K
- delete the line
For example
fmt.Println("hello")
fmt.Println("world")
fmt.Printf("3[1A3[K")
will output only hello
as the world will be deleted
You can read more about ascii escaping here https://tldp.org/HOWTO/Bash-Prompt-HOWTO/x361.html
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论