Skip to content

Instantly share code, notes, and snippets.

@cirocosta
Last active August 29, 2015 13:57
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 cirocosta/9697164 to your computer and use it in GitHub Desktop.
Save cirocosta/9697164 to your computer and use it in GitHub Desktop.
Outputs the line of the first occurence of a pattern with grep
$ grep -n --exclude-dir="node_modules" 'term to be searched for' -r # searches recursively for a term and outputs with line number
$ grep -n 'style="' my-file.html | head -1 | cut -d : -f 1 # outputs just the number
$ grep -n 'style="' my-file.html | head -1 # outputs the number and the content found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment