Skip to content

Instantly share code, notes, and snippets.

@thirdknife
Created February 24, 2015 05:54
Show Gist options
  • Select an option

  • Save thirdknife/ea2b186e40e932dcda35 to your computer and use it in GitHub Desktop.

Select an option

Save thirdknife/ea2b186e40e932dcda35 to your computer and use it in GitHub Desktop.
#!/usr/bin/awk -f
BEGIN {
OFS="*";
split(pats, a, "|")
}
{
pats=""
for (e in a) {
if (match($0, a[e])) {
pats=(pats?pats":":"") substr($0,RSTART,RLENGTH)
}
}
if (pats)
print FILENAME,NR,pats,$0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment