Byobu 창에서 무언가를 찾는 방법이 있습니까? ctrl-fbyobu 창 에서 식과 같은 표현식을

ctrl-fbyobu 창 에서 식과 같은 표현식을 찾는 방법이 있습니까?



답변

눌러 F7또는 AltPgUp AltPgDown입력 byobu 가능한 스크롤 모드 . 이를 통해 vi유사한 명령을 사용하여 과거 출력을 탐색 할 수 있습니다 . 다음은 이동 명령의 빠른 목록입니다.

h - Move the cursor left by one character
j - Move the cursor down by one line
k - Move the cursor up by one line
l - Move the cursor right by one character
0 - Move to the beginning of the current line
$ - Move to the end of the current line
G - Moves to the specified line (defaults to the end of the buffer)
ctrl + b - Page up
ctrl + f - Page down

/ - Search forward
? - Search backward

n - Moves to the next match, either forward or backword


답변