哪些 ncurses 框架可用于 BASH?
是否还有更多适用于 bash 的文本用户界面 (TUI) 框架(除此之外)? :http://code.google.com/p/bashsimplecurses/
- 我想要用户输入(数据输入)
- 处理输入
Are there some more Text User Interface (TUI) frameworks for bash (other than this)? : http://code.google.com/p/bashsimplecurses/
- I want to take user input (data entry)
- process the entry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您需要做的只是提示用户输入信息,请查看
dialog
。http://invisible-island.net/dialog/dialog.html
If all you need to do is prompt the user for information, take a look at
dialog
.http://invisible-island.net/dialog/dialog.html
bashsimplecurses
功能非常强大(从我所见的来看),但您可能想尝试 GTK 服务器。 (查看文档页面以获取教程和手动链接)。它可以与大量脚本语言配合使用。其他 Stack Exchange 用户(尤其是 UNIX/ BSD/ GNU/Linux 群体)建议将 ncurses 与 Python 结合使用。bashsimplecurses
is pretty capable (from the little I've seen), but you might want to try GTK Server. (Have a look at the docs page for tutorial and manual links). It can work with a large number of scripting languages. Other Stack Exchange users (particularly the UNIX/ BSD/ GNU/Linux lot) recommend using ncurses with Python.