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. 


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 up
"\e[A":history-search-backward
## arrow down
"\e[B":history-search-forward
Now we can search easily in the terminal.

Comments

Popular posts from this blog

INSTALLING MOBILE PARTNER IN LINUX

Enable google assistant on android without root

Monitor your PC temperature in ubuntu