Make searching history in terminal easier
PROBLEM:
This might not be a problem but a feature . But I want to mention this here.
Some times while using the terminal you might know a command which is very big and you've already used it before. That means it's in the terminal history and you want to use it.
It is really irritating to hold the up arrow (↑) until you find it. So, here's an useful feature that allows you to search the history just by typing the first few letters of your command in the terminal.
Let me illustrate what we want to achieve using an example.
If I want to use
Let's see how to do it.
sudo -s
ls
man sudo
If I want to use
sudo -s
I have to press ↑ three times. Instead of that I can use it by typing S and pressing ↑.Let's see how to do it.
SOLUTION:
Open a terminal and type the following:
gedit ~/.inputrc
## arrow upNow we can search easily in the terminal.
"\e[A":history-search-backward
## arrow down
"\e[B":history-search-forward
Comments
Post a Comment