Skip to content

Instantly share code, notes, and snippets.

@cjus
Created April 9, 2015 18:09
Show Gist options
  • Save cjus/ed75b19cef21fe1fcb23 to your computer and use it in GitHub Desktop.
Save cjus/ed75b19cef21fe1fcb23 to your computer and use it in GitHub Desktop.
Search in recent shell history
hfind() {
history | grep $1 | grep -v history | grep -v hfind | sed -E 's/^.{7}//' | sort | uniq
}
@cjus
Copy link
Author

cjus commented Apr 9, 2015

Added to my .bash_profile and used in the shell as:

$ hfind git
$ hfind vagrant

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment