Search command line history using arrow up/down

Adds support for using arrow up/down to quickly scroll through the command line history

1
2
3
4
5
6
# Update bashrc
echo "bind '\"\e[A\": history-search-backward'" >> ~/.bashrc
echo "bind '\"\e[B\": history-search-forward'" >> ~/.bashrc

# Reload bash config
source ~/.bashrc