Bash productivity tips
See command history
When I want to find a command I used in the past, but I don’t remember I usually use vim to search for it:
1
vim ~/.bash_history
This is useful because you get the whole list of commands in your history and all the power of vim to search for the command you are looking for. A faster way to show the list of the commands is with the history command:
1
history