命令行上的Mysql(不能使用所有键盘按钮)

发布于 2024-08-18 17:21:27 字数 256 浏览 6 评论 0原文

直接从命令行使用 mysql(在 Ubuntu 9.10、标准 bash 终端上运行),我无法使用某些键盘按钮,例如:

Delete、Control-(向右箭头)、Control-(向左箭头)

分别返回给我:

~;5C;5D

。我假设 mysql 中一定有一个标志可以解决这个问题,但我一直找不到一个。是否有一个 .mysqlconfig 文件可以编辑以在启动时发生这种情况?

Using mysql directly from the command line (running on Ubuntu 9.10, standard bash terminal), I am unable to use certain keyboard buttons like:

Delete, Control-(arrow right), Control-(arrow left)

Which gets returned to me as:

~;5C;5D

respectively. I'm assuming there must be a flag in mysql that fixes this but I have been unable to find one. Is there a .mysqlconfig file to edit to make this happen on startup?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长安忆 2024-08-25 17:21:27

根据此线程mysql --version,mysql使用 editline 而不是 readline 进行编译。从该线程:

我必须添加创建一个包含以下几行的 .editrc 文件才能使 ctrl-R 和 DELETE 正常工作。

bind "\e[3~" ed-delete-next-char 
bind "^R" em-inc-search-prev

虽然这对我不起作用。

该线程的另一个建议确实有效:

$ sudo apt-get install rlwrap

然后在 ~/.bashrc 中添加别名

alias mysql='rlwrap -a mysql'

此问题可能特定于 Ubuntu 9.10

According to this thread and mysql --version, mysql is compiled with editline instead of readline. From that thread:

I had to add create an .editrc file with the following lines to get ctrl-R and DELETE to work.

bind "\e[3~" ed-delete-next-char 
bind "^R" em-inc-search-prev

Although that didn't work for me.

Another suggestion from that thread did work:

$ sudo apt-get install rlwrap

Then add an alias in ~/.bashrc

alias mysql='rlwrap -a mysql'

This problem may be specific to Ubuntu 9.10

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文