Skip to content

Instantly share code, notes, and snippets.

@aspen-roller
Last active December 3, 2020 20:39
Show Gist options
  • Save aspen-roller/dbb288eaaaf56b7620cae32a1c18b5d4 to your computer and use it in GitHub Desktop.
Save aspen-roller/dbb288eaaaf56b7620cae32a1c18b5d4 to your computer and use it in GitHub Desktop.
hunt for files with grep #util
hunt() {
find ./ -type f -regex "$1" -exec grep -Hn "$2" /dev/null {} +
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment