Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 bash 和 GDB 中搜索类似于 readline 库的history-search-backward的 LLDB 命令?
我希望能够输入一些字符,并使用向上箭头循环浏览以这些字符开头的所有命令。
lldb 使用 editline 而不是 readline。Editline 在命令历史记录功能 (em-inc-search-prev) 中具有向后搜索功能^R,默认情况下绑定到该功能(尽管您可以在 .editrc 中更改它)它的工作方式类似于 emac 的^S,您输入字符以优化搜索,然后^R继续到上一场比赛。要反转方向并开始向前搜索,您可以使用 em-inc-search-next,但我们没有将其绑定到任何东西。
^R
^S