Other than viewing the history, is there a way to filter my history?
Say I want to search for a command that started with "ssh"?
Other than viewing the history, is there a way to filter my history?
Say I want to search for a command that started with "ssh"?
Press Ctrl+R and type
ssh
. Ctrl+R will start search from most recent command to old one (reverse-search). If you have more than one command which starts withssh
, Press Ctrl+R again and again until you find the match.Once you've found the match you can press Enter to execute the command or left / right cursor to just select the text of the command.
There is no default reverse option for Ctrl+R to invert the direction of the search but here you will find some suggestions about it.
If you just want to search your history, you can just use
history | grep ssh
, substituting ssh for whatever you want to search.I do a slight variation of the above, works well for me (if you're referring to your bash history
In my home folder I create a file named
Inside goes this
Note: the above doesn't seem to work anymore in 14.04 so this does the same thing -
Then typing however much of a previous command I wish & using the page up/page dn buttons searchs the history, always starting with page up
Here's another method using classic commands (more likely to work across distros). Command history is stored in the file
.bash_history
in your home directory, so you can do this:Don't forget the
-i
flag if you need case insensitive search.Pressing Ctrl+R will start "reverse-i-search" mode, typing "ssh" would search your history for commands which contain "ssh".
I found the following function somewhere on the Internet and have used it to great effect. Put this in your
~/.bashrc
:Now re-load your shell:
exec bash
. You now have a new command, which you can use like so:It will show you a list of matching commands from your history. To run a command, type
!
followed by the command number. Here's an example:I like this approach better than Ctrl+R because it allows much more flexible searches, and I can see multiple results at once.
Put this in your
~/.bashrc
:example:
Wanted to write this as a comment to @ssmy but couldn't get the formatting in the comment to cooperate.
After searching through the history with
history | grep ssh
you can then execute the command you wish by typing its number prepended with an exclamation mark, e.g.!42
.Example:
History is good but limited - I prefer to set up my bash environment so that I log all of the commands I have ever run, in addition to the directory in which they were run in. Then I run a command to list all of the commands I have run in the current directory, which I can pipe to grep etc - it's called 'dish' see:
https://github.com/wolfwoolford/dish
If you want to cut to the chase, just source this in your .bashrc (https://github.com/wolfwoolford/dish/blob/master/dishrc)
There's also a really useful command you get for free called 'dishg' - or dish global - which prints out every command ever run, regardless of directory. Obviously this one is only useful when used with grep and tail etc...
I've been using it for years and it's literally the first thing I install whenever I setup a new box. It logs the commands you run into text files in a hidden directory (~/.dish) .. I've never had an issue with disk space...
I like to grep my history instead of Ctrl+R backwards search. That's because you can only see one line with Ctrl+R. With grep you get more of an overall view of your last interaction with a command etc.
I have the following in my
.bashrc
. It lets you search the command history by typinghiss KEYWORD
. Call it what you like. I like to hiss^^ . Don't forget to reload your.bashrc
file withsource ~/.bashrc