Поиск по истории команд в bash
All checks were successful
Build MkDocs / build-and-deploy (push) Successful in 3s

This commit is contained in:
2025-02-22 00:09:27 +03:00
parent fbea0bc085
commit 07f4c78355

19
docs/servers/misc.md Normal file
View File

@@ -0,0 +1,19 @@
# Разное
## Поиск по истории команд в bash
Включаем поиск по истории команд `bash` по префиксу.
=== "Терминал"
```sh
nano ~/.inputrc
bind -f ~/.inputrc
```
=== ".inputrc"
```sh
"\e[A": history-search-backward
"\e[B": history-search-forward
```