How can I search the command history in cygwin?
I don\'t want to keep pressing the arrow keys to execute a command from console command history.
Checkout the "Gnu Bash Manual" (man bash) for the command "fc". E.g.fc -l -80 would list the last 80 commands, while other options let you search with RegEx...
man bash
fc -l -80