如何按照 less 手册文件中的描述转到第 N 个文件

如何按照 less 手册文件中的描述转到第 N 个文件

我喜欢使用less它来浏览文件。我经常喜欢在多个文件中移动。

在 man 文件中说可以将 N 个文件向前移动:

:n     Examine the next file (from the list of files given in the command line).  If a number N
       is specified, the N-th next file is examined.

我如何指定这个数量 N移至第 N 个下一个文件? 我什么方法都试过了,还是没办法。

答案1

正如 StackExchange 网络上的这些答案所述:

必须在命令前输入数字;要跳过两个文件,请按 ,3:n然后按Enterhttps://unix.stackexchange.com/a/676818/377222

另一个有用的答案https://superuser.com/a/1254274/1056672

注意:您实际上必须为这些命令键入:(即使已经有一个可见的冒号)。

:n jump to next file
:p jump to previous file
:x jump to first file

3:n jump 3 files ahead
3:p jump 3 files back
3:x jump to 3rd file

:f print current file name/info (helpful if you forget where you are) 

相关内容