Skip to content

Instantly share code, notes, and snippets.

@gen0cide
Created May 16, 2013 19:16
Show Gist options
  • Save gen0cide/5594284 to your computer and use it in GitHub Desktop.
Save gen0cide/5594284 to your computer and use it in GitHub Desktop.
awk -F"," -v k="text" '{
gsub(/{|}/,"")
for(i=1;i<=NF;i++){
if ( $i ~ k ){
print $i
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment