纳米 MA 热键

纳米 MA 热键

当在终端中使用 nano 执行“写入文件附加”命令时,它会列出按键“MA”。

我完全搞不懂这个按键命令到底是什么意思。我在某处读到它是指 Alt-A,但不起作用。

我该用什么?

编辑:我认为问题是因为当我按下 Alt-A 时,它会打开我的 Xubuntu 终端窗口菜单 > 选项卡菜单项。

那么默认情况下,提供的 xubuntu / xfce 终端的热键与 nano 的热键相同吗?这是正确的吗?还是我修改了它们然后忘记了?

答案1

MA 表示ALT+ A。但这并不会直接将内容附加到所选文件中。

ALT+A在“写入文件”和“附加到文件”之间切换文件修改模式,如下图所示。

要写入的文件名

要附加到的文件名

切换到所需命令后,按Enter
这会将内容附加到文件。

答案2

append使用写入文件输出选项的测试示例。
起始条件:

doug@s15:~$ cat cccc
this is file cccc.
doug@s15:~$ cat bbbb
this is file bbbb.

现在,,nano cccc然后是Ctrl+ O,接着是CTRL+ X,接着是Esc然后A但改变这一点:

File Name to Append to: cccc

对此:

File Name to Append to: bbbb

然后Enter接着是CTRL+X
参见这个:

doug@s15:~$ cat bbbb
this is file bbbb.
this is file cccc.

注意:还有其他组合键可以达到相同的效果。请参阅帮助文件中的nano一段摘录如下:

 The notation for shortcuts is as follows: Control-key sequences are
 notated with a caret (^) symbol and can be entered either by using the
 Control (Ctrl) key or pressing the Escape (Esc) key twice.  Escape-key
 sequences are notated with the Meta (M-) symbol and can be entered using
 either the Esc, Alt, or Meta key depending on your keyboard setup.

相关内容