enable terminal history code example
Example 1: search terminal history
ctrl + R (for linux and osx)
Example 2: histroy of terminal
Highly recommended command to use in terminal for reviewing commands and reuse
some of them. Just execute in terminal:
history
Also recommended to use together with grep for filtering a specific used command
history | grep "foo*"