Less

少 -j 不適合我

  • October 28, 2013

less -jn其中 n 是要跳轉到的行號對我不起作用。它只是沒有效果。我在 Ubuntu 11.04 上執行的版本較少 436。我也試過less --jump-target=200LESS='-j200' less filename

ceving 的回答解釋了什麼-j。我想你正在尋找

less +200 filename           # jump to line 200 (the first line is 1)

跳轉到第 NUM 行的切換在 unix 文本查看器(以 開頭)和編輯器+NUM中相當普遍。more簡而言之,它是更通用的實例,+command可讓您在打開文件後自動執行命令。其他常見範例:

less +200P filename          # jump to the line containing byte 200
less +G filename             # jump to the end of the file (G command)
less +/hello filename        # jump to the first occurrence of hello

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