bash – 当您处于历史中间时,导航到历史中最早的/最新的命令

前端之家收集整理的这篇文章主要介绍了bash – 当您处于历史中间时,导航到历史中最早的/最新的命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_0@ 说我在一个bash终端,有大量的命令历史。我按下了上箭头一整遍,在历史的“中间”。我想现在快速导航到我的历史记录中的第一个或最后一个命令(长时间不按住向上或向下箭头)。这可能吗?如果是这样,实现这一点的快捷键是什么?
看看 man page
man bash

这里我为你复制你正在寻找的东西:

prevIoUs-history (C-p)
    Fetch the prevIoUs command from the history list,moving back in the list.  
next-history (C-n)
    Fetch the next command from the history list,moving forward in the list.  
beginning-of-history (M-<)
    Move to the first line in the history.  
end-of-history (M->)
    Move to the end of the input history,i.e.,the line currently being entered.
原文链接:https://www.f2er.com/bash/388927.html

猜你在找的Bash相关文章