【Liunx操作】提示历史输入指令

 

# 配置 ~/.bashrc 来启用高级历史功能 
#打开 ~/.bashrc 文件:
vi ~/.bashrc

#在文件末尾添加以下内容:
# Enable incremental history search
bind '"\C-r": reverse-search-history'

#保存文件并退出编辑器。

#重新加载 .bashrc 文件:
source ~/.bashrc
#通过以上步骤,你可以更轻松地进行历史命令的搜索和匹配。


#假设曾经执行过命令 git status,那么按下 Ctrl + R 后,输入git, 终端显示
(reverse-i-search)`git': git status

 

posted @ 2024-12-26 15:45  我自逍遥笑  阅读(0)  评论(0编辑  收藏  举报