有什么办法可以在byobu窗口中找到一些东西吗?

Uri*_*Uri 15 byobu

有没有办法ctrl-f在 byobu 窗口中找到表达式(如命令)?

Fra*_*que 26

F7,或Alt- PgUp Alt-PgDown进入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
Run Code Online (Sandbox Code Playgroud)