0

我想检查 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
4

1 回答 1

0

这意味着您可以通过导出环境变量来选择使用 vim、nano 等编辑器而不是 emacs。

只需导出 VISUAL 环境变量。示例用法:

export VISUAL=vim
于 2013-08-23T19:39:49.217 回答