CLI 模式下的动画“等待”符号
我想知道是否有人知道在终端中提供简单动画的方法。例如,在处理文件时,如果能够
显示: “|”、“/”、“-”、“\”、“|”等,
在同一位置以较小的时间间隔 那就太好了,所以它看起来像一个旋转条(表明程序正在运行)。 我知道执行此操作的唯一方法是使用 ANSI 转义字符或使用 ncurses 等外部库。我想知道是否有更好的方法来做到这一点?
I was wondering if someone knows a way to provide simple animations in the terminal. For instance, while processing a file, it would be nice to be able to show:
'|', '/', '-', '\', '|', etc.
at the same place with small time intervals in between, so it would look like a rotating bar (indicating the program is running).
The only way I know of doing this is by using ANSI escape characters or by using external libraries like ncurses. I was wondering if there would be a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
至少作为第一次尝试,我会尝试这个:
At least as a first attempt, I'd try this:
这只是对 Jerry 代码的修改,应该按原样编译和运行。
This is simply a modification on Jerry's code that should compile and run as-is.