Skip to content

Instantly share code, notes, and snippets.

@garlic0x1
Created November 5, 2022 01:55
Show Gist options
  • Save garlic0x1/d8e984aabcdb9760eb4f7b4241329cb4 to your computer and use it in GitHub Desktop.
Save garlic0x1/d8e984aabcdb9760eb4f7b4241329cb4 to your computer and use it in GitHub Desktop.
Search shell history in an easy format for copy/paste
if [ "$#" -eq 1 ]; then
history | cut -c 8- | grep $1
else
history | cut -c 8-
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment