Navigating to the earliest/latest command in history when you're in the middle of your history

前端 未结 2 1602
别跟我提以往
别跟我提以往 2021-01-31 07:40

Say I am in a bash terminal and have a large history of commands. I pressed the up arrow a whole bunch of times and am in the \"middle\" of the history. I want to now navigate t

2条回答
  •  野的像风
    2021-01-31 07:44

    Take a look in the man page:

    man bash
    

    Here I copied for you the thing you were looking for:

    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.
    

提交回复
热议问题