Skip to content

Instantly share code, notes, and snippets.

@mcarletti
Created November 20, 2019 11:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcarletti/e61e3635af6303cc62dae0f6df1b4325 to your computer and use it in GitHub Desktop.
Save mcarletti/e61e3635af6303cc62dae0f6df1b4325 to your computer and use it in GitHub Desktop.
Search for a pattern (string) in all files
#!/bin/bash
EXTENSION=$1
PATTERN=$2
grep --include="*.${EXTENSION}" -nRHI "${PATTERN}" *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment