terminal search history code example
Example 1: ubuntu search for command used
> grep "the_search" ~/.bash_history
--Don't forget the -i flag if you need case insensitive search.
Example 2: find old command terminal
history | grep "foo*"
Example 3: search terminal history
ctrl + R (for linux and osx)