Nano

Nano Editor:刪除到文件末尾

  • October 30, 2015

使用GNU 的 Nano Editor時,是否可以從實際游標位置刪除到文本文件的末尾?

我現在的解決方法:按住Ctrl``K刪除整行熱鍵)。但是這種方法在慢速遠端連接(telnet、SSH…等)上不太舒服。

根據Nano Keyboard Commands,您可以這樣做Alt``T

M-T    Cut from the cursor position to the end of the file

其中M是“alt”(指ESC鍵)。在文件中,“cut”是刪除或刪除的另一種說法,例如,

^K     Cut the current line and store it in the cutbuffer

引用自:https://unix.stackexchange.com/questions/239635