Skip to content

Instantly share code, notes, and snippets.

@ashumkin
Created March 27, 2020 10:02
Show Gist options
  • Select an option

  • Save ashumkin/55e5e1daa37334ad2864e42e7e038d50 to your computer and use it in GitHub Desktop.

Select an option

Save ashumkin/55e5e1daa37334ad2864e42e7e038d50 to your computer and use it in GitHub Desktop.
Perl oneliner to filter out duplicates
perl -ne 'unless ($x{$_}++){ print }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment