Skip to content

Instantly share code, notes, and snippets.

@loplex
Last active July 5, 2018 20:20
Show Gist options
  • Save loplex/47528e024f82991dc2012780b85f50ec to your computer and use it in GitHub Desktop.
Save loplex/47528e024f82991dc2012780b85f50ec to your computer and use it in GitHub Desktop.
print duplicated lines only once without need of sorted input
#!/bin/sh
# print duplicated lines only once without need of sorted input
awk '!seen[$0]++' $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment