Skip to content

Instantly share code, notes, and snippets.

@mozamimy
Last active August 29, 2015 14:20
Show Gist options
  • Save mozamimy/f0dd0907287cd4049e91 to your computer and use it in GitHub Desktop.
Save mozamimy/f0dd0907287cd4049e91 to your computer and use it in GitHub Desktop.
Full Text Search in bash
function fts() {
find . -name "$1" -print | xargs grep "$2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment