Skip to content

Instantly share code, notes, and snippets.

@mlehman
Created June 22, 2016 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlehman/559fdb4f0fbbc4763c1ead43f3991866 to your computer and use it in GitHub Desktop.
Save mlehman/559fdb4f0fbbc4763c1ead43f3991866 to your computer and use it in GitHub Desktop.
history grep
# utility function for your profile to search history
hgrep(){
history | grep $1 | sort -k 2 | uniq -c -f 1 | sort
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment