【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