Mysqlbug:找不到文本编辑器。(试过 emacs)

Mysqlbug:找不到文本编辑器。(试过 emacs)

我想检查 mysql 的配置。我发现 mysqlbug 可以检索该信息,但我收到以下错误:

mysqlbug
Finding system information for a MySQL bug report
test -x 
Could not find a text editor. (tried emacs)
You can change editor by setting the environment variable VISUAL.
If your shell is a bourne shell (sh) do
VISUAL=your_editors_name; export VISUAL
If your shell is a C shell (csh) do
setenv VISUAL your_editors_name

答案1

您是否已尝试过它告诉您做的事情?

You can change editor by setting the environment variable VISUAL.
If your shell is a bourne shell (sh) do
VISUAL=your_editors_name; export VISUAL
If your shell is a C shell (csh) do
setenv VISUAL your_editors_name

你可以将“your_editors_name”替换为你知道如何使用的任何编辑器的名称。例如 vi (或 vim)、nano、pico 等等。

答案2

解决方案就在错误消息本身中。如果您使用的是 Bash,请export VISUAL=vi 在运行 之前运行mysqlbug。或者,选择另一个编辑器代替vi,例如pico

相关内容