Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Fast command history scrolling in Terminal' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Fast command history scrolling in Terminal
Authored by: TigerKR on Dec 01, '04 10:43:29PM
I added this to my ~/.bash_profile:

alias histsee='echo "Here are the times that was typed into the command line interface:"; echo""; history | more | grep -i '

Works for me.

[ Reply to This | # ]
Fast command history scrolling in Terminal
Authored by: TigerKR on Dec 01, '04 10:45:44PM
This too:

alias histlast='echo "Here are the last 25 commands that you typed into the command line interface:";echo"";history 25'

I'm right 90% of the time, so why worry about the other 3%?

[ Reply to This | # ]