![적은 [중복]을 위해 man 파일에 설명된 대로 N번째 파일로 이동하는 방법](https://rvso.com/image/1671207/%EC%A0%81%EC%9D%80%20%5B%EC%A4%91%EB%B3%B5%5D%EC%9D%84%20%EC%9C%84%ED%95%B4%20man%20%ED%8C%8C%EC%9D%BC%EC%97%90%20%EC%84%A4%EB%AA%85%EB%90%9C%20%EB%8C%80%EB%A1%9C%20N%EB%B2%88%EC%A7%B8%20%ED%8C%8C%EC%9D%BC%EB%A1%9C%20%EC%9D%B4%EB%8F%99%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95.png)
나는 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
다음 을 누르세요Enter
. https://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)