用于创建用户友好的命令行提示符的工具?
我注意到某些程序(例如 sqlite
、mysql
客户端)提供的命令行提示符在功能上与 bash
的功能非常相似,包括:
- 行编辑左右箭头、删除、插入、^K等
- 历史浏览上下箭头
- ^R为反向i-在命令历史记录中搜索,
这让我认为他们为此使用相同的工具集。
我想在我的程序中创建具有类似功能的提示,我可以使用哪些工具?我希望它具有与 bash 相同的功能,以便用户熟悉它。
I notice that some programs (e.g. sqlite
, mysql
client) provide a command-line prompt that is very similar in capabilities to the bash
's, including:
- line editing with left and right arrows, delete, insert, ^K, etc.
- history browsing with up and down arrows
- ^R for reverse i-search in command history
which make me think that they are using the same toolset for this.
I'd like to create a prompt with similar capabilities in my program, which tools can I use? I prefer it to have the same functionality as in bash
, so that the users would be familiar with it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其中大多数使用 GNU readline 库
Most of these use the GNU readline library