Skip to content

Instantly share code, notes, and snippets.

@justgrimes
Created July 7, 2015 22:52
Show Gist options
  • Save justgrimes/71fd98441d865714899a to your computer and use it in GitHub Desktop.
Save justgrimes/71fd98441d865714899a to your computer and use it in GitHub Desktop.
awk one liner for checking lines for quote mismatches (aka odd quote counts by line)
awk -F'|' 'BEGIN{print "COUNT,", "LINE"}{print gsub(/"/,"") "," NR}' file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment