Skip to content

Instantly share code, notes, and snippets.

@traedamatic
Last active March 31, 2016 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save traedamatic/4213a2e784b2e7a4a7eb9835a7676e3d to your computer and use it in GitHub Desktop.
Save traedamatic/4213a2e784b2e7a4a7eb9835a7676e3d to your computer and use it in GitHub Desktop.
shell script count lines with sort
# redirect input in gawk and count unique lines
SOMETHING > gawk '{print $1}' | sort | uniq -c | sort -bgr > counted_lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment