- vi line number
line number on 하고자 할때
: set number (ESC > set number)

line number off 하고자 할때
: set nonumber

문장 맨 앞으로 이동 : ^
문장 맨 끝으로 이동 : $
문서의 맨 처음으로 이동 : gg 또는 1G
문서의 맨 마지막으로 이동 : G
특정 라인으로 이동 : (라인 번호) + Shift + g (숫자 입력 후 Shift + g)
Page Up : Ctrl + b
Page Down : Ctrl + f

https://wayhome25.github.io/etc/2017/03/27/vi/




- cat line number
cat -n 파일명
https://www.google.com/amp/s/www.cyberciti.biz/faq/cat-line-numbers-and-ranges-under-unix-linux/

 

Linux/Unix: Cat Command Display Line Numbers - nixCraft

How do I use the cat command to display the line numbers for a file called myapp.c under Linux or Unix like operating systems?

www.cyberciti.biz


- less line number
less -N 파일명

특정 줄로 이동
ng: 줄 번호 n으로 이동합니다. 기본값은 파일의 시작입니다.
g: 파일의 첫번째 줄로 이동

nG: 줄 번호 n으로 이동합니다. 기본값은 파일의 끝입니다.
G: 파일의 마지막 줄로 이동

320123 행으로 이동하려면 320123g

https://qastack.kr/programming/8586648/going-to-a-specific-line-number-using-less-in-unix

 

Less in Unix를 사용하여 특정 줄 번호로 이동

 

qastack.kr

 

Posted by 張's blog
,