Skip to content

Instantly share code, notes, and snippets.

@mcjim
Last active December 17, 2015 20:39
Show Gist options
  • Save mcjim/5669493 to your computer and use it in GitHub Desktop.
Save mcjim/5669493 to your computer and use it in GitHub Desktop.
grep for a function and output as a tab-delimited file
grep -nHIR drupal_add_css . | awk '{print $1,"\t",substr($0,index($0,$2));}' > ~/Desktop/drupal_add_css.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment