Linux,是否有在终端中执行最后一个多行命令的快捷方式,而不是复制和粘贴

Linux, is there a shortcut for executing last multi-lines command in terminal, instead of copy & paste

在给定的场景中,我有一个多行命令,我想执行多次,如果我按 key up,我会在命令的最后一行结束,因此,我每次都需要复制命令并将其传递到终端。 有没有直接在屏幕上显示最后一个命令的快捷方式?

If I press key up I end up with the last line of the command

您的终端可能需要 shopt -s checkwinsize,以便完整显示该行。

另一个选项,调用history命令,在输出中找到命令号,然后!<command-number>