Skip to content

Instantly share code, notes, and snippets.

@amtc131
Last active June 30, 2023 22:44
Show Gist options
  • Save amtc131/dee6093fab662c0e2ac1f6a94752d7e6 to your computer and use it in GitHub Desktop.
Save amtc131/dee6093fab662c0e2ac1f6a94752d7e6 to your computer and use it in GitHub Desktop.
AWK Check for duplicate lines
awk 'seen[$0]++ { print "duplicate lines: " $0 }' file
awk -F ',' 'seen[$0]++ { print "duplicate lines: " $0 }' file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment